Replace #ifdef WIN32 with #ifdef TARGET_HOST_WIN32, as per FreeGLUT convention
authorNigel Stewart <nigels.com@gmail.com>
Tue, 30 Dec 2003 02:17:07 +0000 (02:17 +0000)
committerNigel Stewart <nigels.com@gmail.com>
Tue, 30 Dec 2003 02:17:07 +0000 (02:17 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@426 7f0cb862-5218-0410-a997-914c9d46530a

src/freeglut_joystick.c

index 8e469bd..8f7b5ee 100644 (file)
@@ -48,7 +48,7 @@
 /*
  * PWO: I don't like it at all. It's a mess. Could it be cleared?
  */
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
 #   include <windows.h>
 #   if defined( __CYGWIN32__ ) || defined( __CYGWIN__ )
 #       define NEAR /* */
 #   endif
 #endif
 
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
 #   define _JS_MAX_AXES 6
 #else
 #   ifdef __FreeBSD__
@@ -123,7 +123,7 @@ struct tagSFG_Joystick
     int         id;
 #endif
 
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
     JOYINFOEX   js;
     UINT        js_id;
 #else
@@ -160,7 +160,7 @@ static SFG_Joystick* fgJoystick = NULL;
  */
 static void fghJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
 {
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
     MMRESULT status;
 #else
     int status;
@@ -180,7 +180,7 @@ static void fghJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
         return;
     }
 
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
     status = joyGetPosEx( joy->js_id, &joy->js );
 
     if( status != JOYERR_NOERROR )
@@ -350,7 +350,7 @@ static void fghJoystickRead( SFG_Joystick* joy, int* buttons, float* axes )
  */
 static void fghJoystickOpen( SFG_Joystick* joy )
 {
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
     JOYCAPS jsCaps;
     int     i;
 
@@ -538,7 +538,7 @@ void fgJoystickInit( int ident )
 
     fgJoystick = ( SFG_Joystick * )calloc( sizeof( SFG_Joystick ), 1 );
 
-#ifdef WIN32
+#ifdef TARGET_HOST_WIN32
     switch( ident )
     {
     case 0:
@@ -578,7 +578,7 @@ void fgJoystickClose( void )
     if( !fgJoystick )
         fgError( "illegal attempt to deinitialize joystick device" );
 
-#ifndef WIN32
+#ifndef TARGET_HOST_WIN32
     if( ! fgJoystick->error )
         close( fgJoystick->fd );
 #endif