Changeset 46625 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
- Timestamp:
- Jun 18, 2013 1:28:52 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86509
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r46194 r46625 100 100 { 101 101 Log((__FUNCTION__": this is vista and up\n")); 102 HMODULE hUser = GetModuleHandle(" USER32");102 HMODULE hUser = GetModuleHandle("user32.dll"); 103 103 if (hUser) 104 104 { … … 169 169 else 170 170 { 171 Log((__FUNCTION__": GetModuleHandle( USER32) failed, err(%d)\n", GetLastError()));171 Log((__FUNCTION__": GetModuleHandle(user32) failed, err(%d)\n", GetLastError())); 172 172 err = ERROR_NOT_SUPPORTED; 173 173 } … … 1573 1573 if (OSinfo.dwMajorVersion >= 5) 1574 1574 { 1575 HMODULE hUser = GetModuleHandle(" USER32");1575 HMODULE hUser = GetModuleHandle("user32.dll"); 1576 1576 if (NULL != hUser) 1577 1577 { … … 1589 1589 else 1590 1590 { 1591 Log((__FUNCTION__": failed to get USER32 handle, err (%d)\n", GetLastError()));1591 Log((__FUNCTION__": failed to get user32 handle, err (%d)\n", GetLastError())); 1592 1592 err = ERROR_NOT_SUPPORTED; 1593 1593 }
Note:
See TracChangeset
for help on using the changeset viewer.