Changeset 3672 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Jul 17, 2007 12:39:30 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22950
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dir.h
r2981 r3672 79 79 #endif 80 80 81 #ifdef __WIN__81 #ifdef RT_OS_WINDOWS 82 82 /** Handle to the opened directory search. */ 83 83 HANDLE hDir; -
trunk/src/VBox/Runtime/include/internal/fs.h
r2981 r3672 24 24 25 25 #include <iprt/types.h> 26 #ifndef __WIN__26 #ifndef RT_OS_WINDOWS 27 27 # include <sys/stat.h> 28 28 #endif … … 37 37 38 38 size_t rtPathVolumeSpecLen(const char *pszPath); 39 #ifndef __WIN__39 #ifndef RT_OS_WINDOWS 40 40 void rtFsConvertStatToObjInfo(PRTFSOBJINFO pObjInfo, const struct stat *pStat, const char *pszName, unsigned cbName); 41 41 #endif 42 42 43 #ifdef __LINUX__43 #ifdef RT_OS_LINUX 44 44 # ifdef __USE_MISC 45 45 # define HAVE_STAT_TIMESPEC_BRIEF -
trunk/src/VBox/Runtime/include/internal/path.h
r2981 r3672 29 29 extern char g_szrtProgramPath[RTPATH_MAX]; 30 30 31 #if defined( __OS2__) || defined(__WIN__)31 #if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS) 32 32 # define HAVE_UNC 1 33 33 # define HAVE_DRIVE 1 -
trunk/src/VBox/Runtime/include/internal/thread.h
r2981 r3672 88 88 /** The current thread state. */ 89 89 RTTHREADSTATE volatile enmState; 90 #if defined( __WIN__) && defined(IN_RING3)90 #if defined(RT_OS_WINDOWS) && defined(IN_RING3) 91 91 /** The thread handle. 92 92 * This is not valid until the create function has returned! */ … … 190 190 191 191 #ifdef IN_RING3 192 # ifdef __WIN__192 # ifdef RT_OS_WINDOWS 193 193 /** 194 194 * Callback for when a native thread is detaching.
Note:
See TracChangeset
for help on using the changeset viewer.