Changeset 63093 in vbox for trunk/src/VBox/Additions/WINNT/VBoxGINA/testcase/tstVBoxGINA.cpp
- Timestamp:
- Aug 6, 2016 3:16:23 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxGINA/testcase/tstVBoxGINA.cpp
r62679 r63093 1 /* $Id */1 /* $Id$ */ 2 2 /** @file 3 3 * tstVBoxGINA.cpp - Simple testcase for invoking VBoxGINA.dll. … … 20 20 #include <stdio.h> 21 21 22 int main( int argc, TCHAR* argv[])22 int main() 23 23 { 24 24 DWORD dwErr; … … 30 30 */ 31 31 32 HMODULE hMod = LoadLibrary (L"VBoxGINA.dll");32 HMODULE hMod = LoadLibraryW(L"VBoxGINA.dll"); 33 33 if (!hMod) 34 34 { … … 59 59 return dwErr == ERROR_SUCCESS ? 0 : 1; 60 60 } 61
Note:
See TracChangeset
for help on using the changeset viewer.