diff options
Diffstat (limited to 'uirdesktop/rdesktop.h')
| -rw-r--r-- | uirdesktop/rdesktop.h | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/uirdesktop/rdesktop.h b/uirdesktop/rdesktop.h index 989f6c39..e835231e 100644 --- a/uirdesktop/rdesktop.h +++ b/uirdesktop/rdesktop.h @@ -2,17 +2,17 @@ rdesktop: A Remote Desktop Protocol client. Master include file Copyright (C) Matthew Chapman 1999-2005 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -20,15 +20,22 @@ #include <stdlib.h> #include <stdio.h> -#include <string.h> -#include <dirent.h> -#include <sys/time.h> +#include <string.h>
+#ifdef _WIN32
+#include <winsock2.h> /* winsock2.h first */
+#include <windows.h>
+#include <time.h>
+#else /* WIN32 */
+#include <dirent.h>
+#include <sys/types.h>
+#include <sys/time.h>
#ifdef HAVE_SYS_SELECT_H #include <sys/select.h> -#else +#else /* HAVE_SYS_SELECT_H */ #include <sys/types.h> #include <unistd.h> -#endif +#endif /* HAVE_SYS_SELECT_H */ +#endif /* WIN32 */
#include <limits.h> /* PATH_MAX */ #define VERSION "1.4.1" |
