CVS: winex/windows user.c,1.19,1.20
[email protected] 29 Aug 2007 11:55:50 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/windows user.c,1.19,1.20Update of /var/lib/cvsd/cvsroot/winex/windows
In directory agravaine:/tmp/cvs-serv28716/windows
Modified Files:
user.c
Log Message:
Implement ChangeDisplaySettingsW
Index: user.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/windows/user.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- user.c 30 Mar 2007 22:09:47 -0000 1.19
+++ user.c 29 Aug 2007 11:55:48 -0000 1.20
@@ -278,6 +278,15 @@
}
/***********************************************************************
+ * ChangeDisplaySettingsW (USER32.@)
+ */
+LONG WINAPI ChangeDisplaySettingsW( LPDEVMODEW devmode, DWORD flags )
+{
+ TRACE_(system)("%p,0x%08lx\n", devmode, flags);
+ return ChangeDisplaySettingsExW( NULL, devmode, 0, flags, 0 );
+}
+
+/***********************************************************************
* ChangeDisplaySettings (USER.620)
*/
LONG WINAPI ChangeDisplaySettings16( LPDEVMODEA devmode, DWORD flags )