[MPlayer-cvslog] r27756 - trunk/get_path.c

diego subversion at mplayerhq.hu
Mon Oct 13 16:55:01 CEST 2008


Author: diego
Date: Mon Oct 13 16:55:01 2008
New Revision: 27756

Log:
Add missing Cygwin header, fixes the warning:
get_path.c:151: warning: implicit declaration of function `cygwin_conv_to_full_w
in32_path'


Modified:
   trunk/get_path.c

Modified: trunk/get_path.c
==============================================================================
--- trunk/get_path.c	(original)
+++ trunk/get_path.c	Mon Oct 13 16:55:01 2008
@@ -20,10 +20,15 @@
 #include <unistd.h>
 #endif
 
-#ifdef WIN32
+#ifdef __MINGW32__
 #include <windows.h>
 #endif
 
+#ifdef __CYGWIN__
+#include <windows.h>
+#include <sys/cygwin.h>
+#endif
+
 #ifdef __OS2__
 #define INCL_DOS
 #include <os2.h>



More information about the MPlayer-cvslog mailing list