summaryrefslogtreecommitdiffstats
path: root/tinyMSRP/include/tinymsrp_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinyMSRP/include/tinymsrp_config.h')
-rw-r--r--tinyMSRP/include/tinymsrp_config.h86
1 files changed, 86 insertions, 0 deletions
diff --git a/tinyMSRP/include/tinymsrp_config.h b/tinyMSRP/include/tinymsrp_config.h
new file mode 100644
index 0000000..9c9c3e4
--- /dev/null
+++ b/tinyMSRP/include/tinymsrp_config.h
@@ -0,0 +1,86 @@
+/*
+* Copyright (C) 2009 Mamadou Diop.
+*
+* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
+*
+* This file is part of Open Source Doubango Framework.
+*
+* DOUBANGO is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* DOUBANGO is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with DOUBANGO.
+*
+*/
+
+/**@file tinyMSRP_config.h
+ * @brief Global configuration file.
+ *
+ * This file incude all your preferences or configuration. All specific configuration
+ * must be defined in this file. You must include this file in all your header files.
+ *
+ * @author Mamadou Diop <diopmamadou(at)doubango.org>
+ *
+ * @date Created: Sat Nov 8 16:54:58 2009 mdiop
+ */
+
+#ifndef _TINYMSRP_H_
+#define _TINYMSRP_H_
+
+#ifdef __SYMBIAN32__
+#undef _WIN32 /* Because of WINSCW */
+#endif
+
+/* Windows (XP/Vista/7/CE and Windows Mobile) macro definition.
+*/
+#if defined(WIN32)|| defined(_WIN32) || defined(_WIN32_WCE)
+# define TMSRP_UNDER_WINDOWS 1
+#endif
+
+/* Used on Windows and Symbian systems to export/import public functions and global variables.
+*/
+#if !defined(__GNUC__) && defined(TINYMSRP_EXPORTS)
+# define TINYMSRP_API __declspec(dllexport)
+# define TINYMSRP_GEXTERN __declspec(dllexport)
+#elif !defined(__GNUC__) /*&& defined(TINYMSRP_IMPORTS)*/
+# define TINYMSRP_API __declspec(dllimport)
+# define TINYMSRP_GEXTERN __declspec(dllimport)
+#else
+# define TINYMSRP_API
+# define TINYMSRP_GEXTERN extern
+#endif
+
+/* Guards against C++ name mangling
+*/
+#ifdef __cplusplus
+# define TMSRP_BEGIN_DECLS extern "C" {
+# define TMSRP_END_DECLS }
+#else
+# define TMSRP_BEGIN_DECLS
+# define TMSRP_END_DECLS
+#endif
+
+/* Disable some well-known warnings
+*/
+#ifdef _MSC_VER
+# define _CRT_SECURE_NO_WARNINGS
+# pragma warning( disable : 4996 )
+#endif
+
+#include <stdint.h>
+#include <stddef.h>
+
+
+#if HAVE_CONFIG_H
+ #include "../config.h"
+#endif
+
+#endif /* _TINYMSRP_H_ */
+
OpenPOWER on IntegriCloud