Changeset 3699 in vbox for trunk/src/VBox/Runtime/r3/win32
- Timestamp:
- Jul 18, 2007 5:37:46 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 22991
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win32/process-win32.cpp
r2981 r3699 102 102 * GetProcessId requires XP SP1 or later 103 103 */ 104 #if def __WIN64__104 #if defined(RT_ARCH_AMD64) 105 105 *pProcess = GetProcessId(hProcess); 106 #else /* ! __WIN64__*/106 #else /* !RT_ARCH_AMD64 */ 107 107 static bool fInitialized = false; 108 108 static DWORD (WINAPI *pfnGetProcessId)(HANDLE Thread) = NULL; … … 140 140 *pProcess = ProcInfo.UniqueProcessId; 141 141 } 142 #endif /* ! __WIN64__*/142 #endif /* !RT_ARCH_AMD64 */ 143 143 } 144 144 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.