|
From: TAMURA K. <tk...@us...> - 2006-06-30 03:54:48
|
Update of /cvsroot/peace/peace/dll/ui.so In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25247 Modified Files: desktop.cc wingdi.cc winuser.cc Log Message: correct function definitions. Found by w32api-3.6 Index: desktop.cc =================================================================== RCS file: /cvsroot/peace/peace/dll/ui.so/desktop.cc,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- desktop.cc 30 Nov 2003 16:11:05 -0000 1.9 +++ desktop.cc 30 Jun 2006 03:54:45 -0000 1.10 @@ -64,7 +64,7 @@ } HWINSTA WINAPI -CreateWindowStationA(LPSTR a, DWORD b, DWORD c, LPSECURITY_ATTRIBUTES attr) +CreateWindowStationA(LPCSTR a, DWORD b, DWORD c, LPSECURITY_ATTRIBUTES attr) { ADP2("USER32DEBUG", "CreateWindowStationA [not implemented]"); /* XXX */ @@ -72,7 +72,7 @@ } HWINSTA WINAPI -CreateWindowStationW(LPWSTR a, DWORD b, DWORD c, LPSECURITY_ATTRIBUTES attr) +CreateWindowStationW(LPCWSTR a, DWORD b, DWORD c, LPSECURITY_ATTRIBUTES attr) { ADP2("USER32DEBUG", "CreateWindowStationW [not implemented]"); return 0; Index: winuser.cc =================================================================== RCS file: /cvsroot/peace/peace/dll/ui.so/winuser.cc,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- winuser.cc 30 Jun 2006 03:33:44 -0000 1.13 +++ winuser.cc 30 Jun 2006 03:54:45 -0000 1.14 @@ -1754,7 +1754,7 @@ * Windows 98/2000 only. */ BOOL WINAPI -UnregisterDeviceNotification(HDEVNOTIFY h) +UnregisterDeviceNotification(HANDLE h) { ADP("UnregisterDeviceNotification [not implemented]"); return FALSE; Index: wingdi.cc =================================================================== RCS file: /cvsroot/peace/peace/dll/ui.so/wingdi.cc,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- wingdi.cc 29 Sep 2004 15:53:36 -0000 1.27 +++ wingdi.cc 30 Jun 2006 03:54:45 -0000 1.28 @@ -1244,7 +1244,7 @@ * psize [in/out] */ BOOL WINAPI -GetICMProfileA(HDC hdc, DWORD psize, LPSTR filebuf) +GetICMProfileA(HDC hdc, LPDWORD psize, LPSTR filebuf) { ADP("GetICMProfileA [not implemented]"); if (!IS_VALID_HDC(hdc)) { |