Changeset 27990 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Apr 5, 2010 7:06:00 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r27989 r27990 870 870 static DWORD vboxDispIfResizeXPDM(PCVBOXDISPIF const pIf, LPCSTR lpszDeviceName, LPDEVMODE lpDevMode, LONG *pResult) 871 871 { 872 SetLastError(NO_ERROR); 873 *pResult = pIf->modeData.xpdm.pfnChangeDisplaySettingsEx(lpszDeviceName, 874 lpDevMode, NULL, lpDevMode ? (CDS_NORESET | CDS_UPDATEREGISTRY) : 0, NULL); 875 return GetLastError(); 872 return ERROR_NOT_SUPPORTED; 876 873 } 877 874 … … 883 880 return ERROR_NOT_SUPPORTED; 884 881 case VBOXDISPIF_MODE_XPDM: 885 // return vboxDispIfResizeXPDM(pIf, lpszDeviceName, lpDevMode, pResult); 886 return ERROR_NOT_SUPPORTED; 882 return vboxDispIfResizeXPDM(pIf, lpszDeviceName, lpDevMode, pResult); 887 883 #ifdef VBOXWDDM 888 884 case VBOXDISPIF_MODE_WDDM:
Note:
See TracChangeset
for help on using the changeset viewer.