summaryrefslogtreecommitdiff
path: root/endless/types.h
diff options
context:
space:
mode:
authorPhilip Chimento <philip@endlessm.com>2013-04-10 12:17:07 +0100
committerP. F. Chimento <philip.chimento@gmail.com>2013-04-17 17:14:21 +0200
commit408f93ec2327a8647030139a2e6f295e8b2c8de1 (patch)
treec0a796adc7ca6981b8eb0b53e8c21b5101dd2962 /endless/types.h
parent5299f7acf85200a46679334a6bd230d4e2101b7f (diff)
Skeleton build system to build a shared library
Builds a dummy shared library that exports one symbol for testing, eos_hello_sample_function(). [#1]
Diffstat (limited to 'endless/types.h')
-rw-r--r--endless/types.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/endless/types.h b/endless/types.h
new file mode 100644
index 0000000..a572d7c
--- /dev/null
+++ b/endless/types.h
@@ -0,0 +1,16 @@
+/* Copyright 2013 Endless Mobile, Inc. */
+
+#if !(defined(_EOS_SDK_INSIDE_ENDLESS_H) || defined(COMPILING_EOS_SDK))
+#error "Please do not include this header file directly."
+#endif
+
+#ifndef EOS_TYPES_H
+#define EOS_TYPES_H
+
+#include "enums.h"
+#include "macros.h"
+#include "apiversion.h"
+
+/* Shared typedefs for structures */
+
+#endif /* EOS_TYPES_H */