summaryrefslogtreecommitdiff
path: root/sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-12 21:41:34 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-12 21:51:54 +0100
commit131ad1a8f9aeebee3a7560e09c73cdbba8573feb (patch)
tree78fbe4d0dc0cb8d6eaf8799d53b6ecb748ad3155 /sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in
parent9ae08cc0f9bed7a62801e2526537fcffe14e53a9 (diff)
sid player is now real plugin (dynamically loaded)
ported sid code to new API moved to different md5 library added more md5 functions to plugin API
Diffstat (limited to 'sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in')
-rw-r--r--sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in51
1 files changed, 0 insertions, 51 deletions
diff --git a/sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in b/sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in
deleted file mode 100644
index b9c82441..00000000
--- a/sid/sidplay-libs-2.1.0/libsidplay/unix/sidconfig.h.in
+++ /dev/null
@@ -1,51 +0,0 @@
-/* sidconfig.h (template) */
-#ifndef _sidconfig_h_
-#define _sidconfig_h_
-
-/* Define the sizeof of types in bytes */
-#define SID_SIZEOF_CHAR @SID_SIZEOF_CHAR@
-#define SID_SIZEOF_SHORT_INT @SID_SIZEOF_SHORT_INT@
-#define SID_SIZEOF_INT @SID_SIZEOF_INT@
-#define SID_SIZEOF_LONG_INT @SID_SIZEOF_LONG_INT@
-
-/* Define SID_WORDS_BIGENDIAN if your processor stores words
- with the most significant byte first (like Motorola and SPARC,
- unlike Intel and VAX). */
-/* Define SID_WORDS_LITTLEENDIAN if your processor stores words
- with the least significant byte first (like Intel and VAX). */
-#define @SID_WORDS_ENDIANESS@
-
-/* Define if your compiler supports type "bool".
- If not, a user-defined signed integral type will be used. */
-@SID_HAVE_BOOL@
-
-/* Define if your compiler supports AC99 header "stdbool.h" */
-@SID_HAVE_STDBOOL_H@
-
-/* DLL building support on win32 hosts */
-#ifndef SID_EXTERN
-# ifdef DLL_EXPORT /* defined by libtool (if required) */
-# define SID_EXTERN __declspec(dllexport)
-# endif
-# ifdef SID_DLL_IMPORT /* define if linking with this dll */
-# define SID_EXTERN __declspec(dllimport)
-# endif
-# ifndef SID_EXTERN /* static linking or !_WIN32 */
-# define SID_EXTERN
-# endif
-#endif
-
-/* Namespace support */
-#define SIDPLAY2_NAMESPACE __sidplay2__
-#ifdef SIDPLAY2_NAMESPACE
-# define SIDPLAY2_NAMESPACE_START \
- namespace SIDPLAY2_NAMESPACE \
- {
-# define SIDPLAY2_NAMESPACE_STOP \
- }
-#else
-# define SIDPLAY2_NAMESPACE_START
-# define SIDPLAY2_NAMESPACE_STOP
-#endif
-
-#endif /* _sidconfig_h_ */