]> granicus.if.org Git - rtmpdump/commitdiff
More XBOX cleanup, just use _WIN32 which is defined on both
authorhyc <hyc@400ebc74-4327-4243-bc38-086b20814532>
Tue, 4 May 2010 16:50:35 +0000 (16:50 +0000)
committerhyc <hyc@400ebc74-4327-4243-bc38-086b20814532>
Tue, 4 May 2010 16:50:35 +0000 (16:50 +0000)
git-svn-id: svn://svn.mplayerhq.hu/rtmpdump/trunk@468 400ebc74-4327-4243-bc38-086b20814532

librtmp/bytes.h
librtmp/hashswf.c
librtmp/rtmp.c
librtmp/rtmp_sys.h

index 62b9226eb62da75046522fab89f6e485af94aad9..de412a26ff7a15388d215453430d8ad4892ea9a9 100644 (file)
@@ -27,7 +27,7 @@
 
 #include <stdint.h>
 
-#if defined(WIN32) || defined(_XBOX)
+#ifdef _WIN32
 /* Windows is little endian only */
 #define __LITTLE_ENDIAN 1234
 #define __BIG_ENDIAN    4321
@@ -36,7 +36,7 @@
 
 typedef unsigned char uint8_t;
 
-#else /* !WIN32 */
+#else /* !_WIN32 */
 
 #include <sys/param.h>
 
@@ -52,7 +52,7 @@ typedef unsigned char uint8_t;
 #define __LITTLE_ENDIAN        LITTLE_ENDIAN
 #endif
 
-#endif /* !WIN32 */
+#endif /* !_WIN32 */
 
 /* define default endianness */
 #ifndef __LITTLE_ENDIAN
index b32442d293b648dff4dcfd10977e9d4b2195fa0b..9b53d2670095daaf441df80c6364b7f1ab1d68df 100644 (file)
@@ -464,7 +464,7 @@ RTMP_HashSWF(const char *url, unsigned int *size, unsigned char *hash,
   AVal home, hpre;
 
   date[0] = '\0';
-#if defined(WIN32) || defined(_XBOX)
+#ifdef _WIN32
 #ifdef _XBOX
   hpre.av_val = "Q:";
   hpre.av_len = 2;
@@ -476,7 +476,7 @@ RTMP_HashSWF(const char *url, unsigned int *size, unsigned char *hash,
 #endif
 #define DIRSEP "\\"
 
-#else /* !WIN32 */
+#else /* !_WIN32 */
   hpre.av_val = "";
   hpre.av_len = 0;
   home.av_val = getenv("HOME");
index 76b36f16a033a0b8f6102929d44f86505b9ac56a..3a9cc19ee4e1663877ba62e49a5bd765a210faab 100644 (file)
@@ -117,7 +117,7 @@ static void DecodeTEA(AVal *key, AVal *text);
 static int HTTP_Post(RTMP *r, RTMPTCmd cmd, const char *buf, int len);
 static int HTTP_read(RTMP *r, int fill);
 
-#ifndef WIN32
+#ifndef _WIN32
 static int clk_tck;
 #endif
 
@@ -130,7 +130,7 @@ RTMP_GetTime()
 {
 #ifdef _DEBUG
   return 0;
-#elif defined(WIN32)
+#elif defined(_WIN32)
   return timeGetTime();
 #else
   struct tms t;
@@ -290,7 +290,7 @@ RTMP_UpdateBufferMS(RTMP *r)
 }
 
 #undef OSS
-#ifdef WIN32
+#ifdef _WIN32
 #define OSS    "WIN"
 #elif defined(__sun__)
 #define OSS    "SOL"
index 2ba144997be53ebb3fde32dff1ae1a0f5f744ac0..602827c4557422896cc9299bed42118622ce2905 100644 (file)
@@ -21,7 +21,7 @@
  *  http://www.gnu.org/copyleft/lgpl.html
  */
 
-#if defined(WIN32) || defined(_XBOX)
+#ifdef _WIN32
 
 #ifdef _XBOX
 #include <xtl.h>
@@ -42,7 +42,7 @@
 #define sleep(n)       Sleep(n*1000)
 #define msleep(n)      Sleep(n)
 #define SET_RCVTIMEO(tv,s)     int tv = s*1000
-#else /* !WIN32 && !_XBOX */
+#else /* !_WIN32 */
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/times.h>