CVS: winex/include user.h,1.10,1.11
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/include user.h,1.10,1.11Update of /var/lib/cvsd/cvsroot/winex/include
In directory agravaine:/tmp/cvs-serv30693/include
Modified Files:
user.h
Log Message:
Provide a facility for the user driver to provide its own implementation of
MessageBox. This allows us to use platform native dialogs for simple alerts
in some cases.
Also, sped up copy protection on some platforms by avoiding starting a
console.
Index: user.h
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/include/user.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- user.h 11 Jan 2006 18:03:23 -0000 1.10
+++ user.h 30 Mar 2007 15:51:29 -0000 1.11
@@ -99,6 +99,7 @@
INT (*pChangeDisplayMode)(LPDEVMODEA);
BOOL (*pEnumDisplayModes)(LPDEVMODEA, DWORD);
INT (*pGetSystemMetrics)(INT);
+ INT (*pMessageBox)(LPCSTR, LPCSTR, UINT);
} USER_DRIVER;
extern USER_DRIVER USER_Driver;