changeset 72:398d1cb12448

Bug fix for unbalanced #if/#endif blocks. I think I broke it when removing the dllimport for Windows.
author Eric Wing <ewing . public |-at-| gmail . com>
date Mon, 16 Jul 2012 22:31:56 -0700
parents 36644b1b940b
children 32757e494675
files ALmixer.h CircularQueue.h Isolated/ALmixer_RWops.h Isolated/SimpleMutex.h Isolated/SimpleThread.h Isolated/SoundDecoder.h Isolated/tErrorLib.h LinkedList.h
diffstat 8 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ALmixer.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/ALmixer.h	Mon Jul 16 22:31:56 2012 -0700
@@ -136,6 +136,8 @@
 	#if defined(_WIN32)
 		#if defined(ALMIXER_BUILD_LIBRARY)
 			#define ALMIXER_DECLSPEC __declspec(dllexport)
+		#else
+			#define ALMIXER_DECLSPEC
 		#endif
 	#else
 		#if defined(ALMIXER_BUILD_LIBRARY)
--- a/CircularQueue.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/CircularQueue.h	Mon Jul 16 22:31:56 2012 -0700
@@ -39,6 +39,8 @@
 #if defined(_WIN32)
 	#if defined(C_CIRCULAR_QUEUE_BUILD_LIBRARY)
 		#define C_CIRCULAR_QUEUE_DECLSPEC __declspec(dllexport)
+	#else
+		#define C_CIRCULAR_QUEUE_DECLSPEC
 	#endif
 #else
 	#if defined(C_CIRCULAR_QUEUE_BUILD_LIBRARY)
--- a/Isolated/ALmixer_RWops.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/Isolated/ALmixer_RWops.h	Mon Jul 16 22:31:56 2012 -0700
@@ -4,6 +4,9 @@
 	#if defined(_WIN32)
 		#if defined(ALMIXER_RWOPS_BUILD_LIBRARY)
 			#define ALMIXER_RWOPS_DECLSPEC __declspec(dllexport)
+		#else
+			#define ALMIXER_RWOPS_DECLSPEC
+		#endif
 	#else
 		#if defined(ALMIXER_RWOPS_BUILD_LIBRARY)
 			#if defined (__GNUC__) && __GNUC__ >= 4
--- a/Isolated/SimpleMutex.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/Isolated/SimpleMutex.h	Mon Jul 16 22:31:56 2012 -0700
@@ -10,6 +10,8 @@
 	#if defined(_WIN32)
 		#if defined(SIMPLE_MUTEX_BUILD_LIBRARY)
 			#define SIMPLE_MUTEX_DECLSPEC __declspec(dllexport)
+		#else
+			#define SIMPLE_MUTEX_DECLSPEC
 		#endif
 	#else
 		#if defined(SIMPLE_MUTEX_BUILD_LIBRARY)
--- a/Isolated/SimpleThread.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/Isolated/SimpleThread.h	Mon Jul 16 22:31:56 2012 -0700
@@ -8,6 +8,9 @@
 	#if defined(_WIN32)
 		#if defined(SIMPLE_THREAD_BUILD_LIBRARY)
 			#define SIMPLE_THREAD_DECLSPEC __declspec(dllexport)
+		#else
+			#define SIMPLE_THREAD_DECLSPEC
+		#endif
 	#else
 		#if defined(SIMPLE_THREAD_BUILD_LIBRARY)
 			#if defined (__GNUC__) && __GNUC__ >= 4
--- a/Isolated/SoundDecoder.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/Isolated/SoundDecoder.h	Mon Jul 16 22:31:56 2012 -0700
@@ -14,6 +14,8 @@
 	#if defined(_WIN32)
 		#if defined(SOUND_DECODER_BUILD_LIBRARY)
 			#define SOUND_DECODER_DECLSPEC __declspec(dllexport)
+		#else
+			#define SOUND_DECODER_DECLSPEC
 		#endif
 	#else
 		#if defined(SOUND_DECODER_BUILD_LIBRARY)
--- a/Isolated/tErrorLib.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/Isolated/tErrorLib.h	Mon Jul 16 22:31:56 2012 -0700
@@ -275,6 +275,8 @@
 #if defined(_WIN32)
 	#if defined(TERROR_BUILD_LIBRARY)
 		#define TERROR_DECLSPEC __declspec(dllexport)
+	#else
+		#define TERROR_DECLSPEC
 	#endif
 #else
 	#if defined(TERROR_BUILD_LIBRARY)
--- a/LinkedList.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/LinkedList.h	Mon Jul 16 22:31:56 2012 -0700
@@ -44,6 +44,8 @@
 #if defined(_WIN32)
 	#if defined(C_LINKED_LIST_BUILD_LIBRARY)
 		#define C_LINKED_LIST_DECLSPEC __declspec(dllexport)
+	#else
+		#define C_LINKED_LIST_DECLSPEC
 	#endif
 #else
 	#if defined(C_LINKED_LIST_BUILD_LIBRARY)