Changeset 14382 for trunk/libtransmission/platform.c
- Timestamp:
- Dec 13, 2014, 3:22:39 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/platform.c
r14348 r14382 16 16 #include <stdlib.h> 17 17 #include <string.h> 18 #include <unistd.h> /* getuid() */19 18 20 19 #ifdef __HAIKU__ … … 23 22 24 23 #ifdef _WIN32 25 #include <w32api.h> 26 #define WINVER WindowsXP 24 #include <process.h> /* _beginthreadex (), _endthreadex () */ 27 25 #include <windows.h> 28 26 #include <shlobj.h> /* for CSIDL_APPDATA, CSIDL_MYDOCUMENTS */ 29 27 #else 28 #include <unistd.h> /* getuid() */ 30 29 #ifdef BUILD_MAC_CLIENT 31 30 #include <CoreFoundation/CoreFoundation.h> … … 37 36 #endif 38 37 39 #ifdef _WIN3240 #include <libgen.h> /* dirname() */41 #endif42 43 38 #include "transmission.h" 44 39 #include "file.h" … … 230 225 #ifdef _WIN32 231 226 232 char *227 static char * 233 228 win32_get_special_folder (int folder_id) 234 229 {
Note: See TracChangeset
for help on using the changeset viewer.