Changeset 70172 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Dec 15, 2017 10:15:28 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r69111 r70172 38 38 #include <errno.h> 39 39 #include <Strsafe.h> 40 #ifndef IPRT_TARGET_NT4 41 # include <LsaLookup.h> 42 #endif 40 #include <LsaLookup.h> 43 41 #include <Lmcons.h> 44 42 45 #ifndef IPRT_TARGET_NT4 46 # define _NTDEF_ /* Prevents redefining (P)UNICODE_STRING. */ 47 # include <Ntsecapi.h> 48 #endif 43 #define _NTDEF_ /* Prevents redefining (P)UNICODE_STRING. */ 44 #include <Ntsecapi.h> 49 45 50 46 #include <iprt/process.h> … … 1448 1444 dwErr = GetLastError(); 1449 1445 1450 #ifndef IPRT_TARGET_NT41451 1446 /* 1452 1447 * The errors ERROR_TRUSTED_DOMAIN_FAILURE and ERROR_TRUSTED_RELATIONSHIP_FAILURE … … 1543 1538 /* Note: pSid will be free'd down below. */ 1544 1539 } 1545 else 1546 #endif /* !IPRT_TARGET_NT4 */ 1547 if (dwErr == ERROR_INSUFFICIENT_BUFFER) 1540 else if (dwErr == ERROR_INSUFFICIENT_BUFFER) 1548 1541 { 1549 1542 /* Allocate memory for the LookupAccountNameW output buffers and do it for real. */
Note:
See TracChangeset
for help on using the changeset viewer.