Changeset 95962 in vbox
- Timestamp:
- Aug 1, 2022 2:11:45 PM (2 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.h
r93115 r95962 64 64 struct 65 65 { 66 /* ChangeDisplaySettingsEx does not exist in NT. ResizeDisplayDevice uses the function. */66 /** ChangeDisplaySettingsEx does not exist in NT. ResizeDisplayDevice uses the function. */ 67 67 DECLCALLBACKMEMBER_EX(LONG, WINAPI, pfnChangeDisplaySettingsEx,(LPCTSTR lpszDeviceName, LPDEVMODE lpDevMode, 68 68 HWND hwnd, DWORD dwflags, LPVOID lParam)); 69 /* EnumDisplayDevices does not exist in NT. isVBoxDisplayDriverActive et al. are using these functions.*/69 /** EnumDisplayDevices does not exist in NT.*/ 70 70 DECLCALLBACKMEMBER_EX(BOOL, WINAPI, pfnEnumDisplayDevices,(IN LPCSTR lpDevice, IN DWORD iDevNum, 71 71 OUT PDISPLAY_DEVICEA lpDisplayDevice, IN DWORD dwFlags)); -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp
r95961 r95962 46 46 DECLCALLBACKMEMBER_EX(LONG,WINAPI, pfnChangeDisplaySettingsEx,(LPCTSTR lpszDeviceName, LPDEVMODE lpDevMode, HWND hwnd, 47 47 DWORD dwflags, LPVOID lParam)); 48 /** EnumDisplayDevices does not exist in NT. isVBoxDisplayDriverActive et al. are using these functions.*/48 /** EnumDisplayDevices does not exist in NT. */ 49 49 DECLCALLBACKMEMBER_EX(BOOL, WINAPI, pfnEnumDisplayDevices,(IN LPCSTR lpDevice, IN DWORD iDevNum, 50 50 OUT PDISPLAY_DEVICEA lpDisplayDevice, IN DWORD dwFlags)); -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTrayInternal.h
r95961 r95962 28 28 DWORD aBitsPerPixel, LONG aPosX, LONG aPosY, BOOL fEnabled, BOOL fExtDispSup); 29 29 30 #ifndef VBOX_WITH_WDDM31 static bool isVBoxDisplayDriverActive(void);32 #else33 /* @misha: getVBoxDisplayDriverType is used instead.34 * it seems bad to put static function declaration to header,35 * so it is moved to VBoxDisplay.cpp */36 #endif37 38 30 #endif /* !GA_INCLUDED_SRC_WINNT_VBoxTray_Internal_h */
Note:
See TracChangeset
for help on using the changeset viewer.