Changeset 780 for trunk/src/user32/new
- Timestamp:
- Sep 1, 1999, 9:12:23 PM (26 years ago)
- Location:
- trunk/src/user32/new
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/dialog.cpp
r666 r780 1 /* $Id: dialog.cpp,v 1. 6 1999-08-24 18:58:00 phaller Exp $ */1 /* $Id: dialog.cpp,v 1.7 1999-09-01 19:12:20 phaller Exp $ */ 2 2 3 3 /* … … 18 18 //****************************************************************************** 19 19 //****************************************************************************** 20 HWND WIN32API CreateDialogParamA(HINSTANCE hinst, LPCSTR lpszTemplate, 21 HWND hwndOwner, DLGPROC dlgproc, 20 HWND WIN32API CreateDialogParamA(HINSTANCE hinst, LPCSTR lpszTemplate, 21 HWND hwndOwner, DLGPROC dlgproc, 22 22 LPARAM lParamInit) 23 23 { … … 38 38 //****************************************************************************** 39 39 //****************************************************************************** 40 HWND WIN32API CreateDialogParamW(HINSTANCE hinst, LPCWSTR lpszTemplate, 41 HWND hwndOwner, DLGPROC dlgproc, 40 HWND WIN32API CreateDialogParamW(HINSTANCE hinst, LPCWSTR lpszTemplate, 41 HWND hwndOwner, DLGPROC dlgproc, 42 42 LPARAM lParamInit) 43 43 { … … 60 60 //****************************************************************************** 61 61 //****************************************************************************** 62 HWND WIN32API CreateDialogIndirectParamA(HINSTANCE hinst, 63 DLGTEMPLATE *dlgtemplate, 64 HWND hwndParent, DLGPROC dlgproc, 62 HWND WIN32API CreateDialogIndirectParamA(HINSTANCE hinst, 63 DLGTEMPLATE *dlgtemplate, 64 HWND hwndParent, DLGPROC dlgproc, 65 65 LPARAM lParamInit) 66 66 { … … 71 71 //****************************************************************************** 72 72 //****************************************************************************** 73 HWND WIN32API CreateDialogIndirectParamW(HINSTANCE hinst, 74 DLGTEMPLATE *dlgtemplate, 75 HWND hwndParent, DLGPROC dlgproc, 73 HWND WIN32API CreateDialogIndirectParamW(HINSTANCE hinst, 74 DLGTEMPLATE *dlgtemplate, 75 HWND hwndParent, DLGPROC dlgproc, 76 76 LPARAM lParamInit) 77 77 { … … 82 82 //****************************************************************************** 83 83 //****************************************************************************** 84 BOOL WIN32API DialogBoxIndirectParamA(HINSTANCE hinst, 85 DLGTEMPLATE *dlgtemplate, 86 HWND hwndParent, DLGPROC dlgproc, 84 INT WIN32API DialogBoxIndirectParamA(HINSTANCE hinst, 85 DLGTEMPLATE *dlgtemplate, 86 HWND hwndParent, DLGPROC dlgproc, 87 87 LPARAM lParamInit) 88 88 { … … 91 91 //****************************************************************************** 92 92 //****************************************************************************** 93 BOOL WIN32API DialogBoxIndirectParamW(HINSTANCE hinst, 94 DLGTEMPLATE *dlgtemplate, 95 HWND hwndParent, DLGPROC dlgproc, 93 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hinst, 94 DLGTEMPLATE *dlgtemplate, 95 HWND hwndParent, DLGPROC dlgproc, 96 96 LPARAM lParamInit) 97 97 { … … 117 117 //****************************************************************************** 118 118 //****************************************************************************** 119 int WIN32API DialogBoxParamW(HINSTANCE arg1, LPCWSTR arg2, HWND arg3, 119 int WIN32API DialogBoxParamW(HINSTANCE arg1, LPCWSTR arg2, HWND arg3, 120 120 DLGPROC arg4, LPARAM arg5) 121 121 { -
trunk/src/user32/new/msgbox.cpp
r300 r780 1 /* $Id: msgbox.cpp,v 1. 1 1999-07-14 08:35:35 sandervlExp $ */1 /* $Id: msgbox.cpp,v 1.2 1999-09-01 19:12:20 phaller Exp $ */ 2 2 /* 3 3 * Win32 message box function for OS/2 … … 98 98 *****************************************************************************/ 99 99 100 BOOL WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams) 100 // @@@PH Win32 BOOL's are casted to INTs 101 INT WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams) 101 102 { 102 103 dprintf(("USER32:MessageBoxIndirectW (%08x) not implemented.\n", … … 122 123 *****************************************************************************/ 123 124 124 BOOL WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams) 125 // @@@PH Win32 BOOL's are casted to INTs 126 INT WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams) 125 127 { 126 128 dprintf(("USER32:MessageBoxIndirectA (%08x) not implemented.\n", -
trunk/src/user32/new/user32.cpp
r662 r780 1 /* $Id: user32.cpp,v 1.1 5 1999-08-24 15:57:27 cbratschiExp $ */1 /* $Id: user32.cpp,v 1.16 1999-09-01 19:12:21 phaller Exp $ */ 2 2 3 3 /* … … 866 866 //****************************************************************************** 867 867 //****************************************************************************** 868 BOOLWIN32API ExcludeUpdateRgn( HDC arg1, HWND arg2)868 INT WIN32API ExcludeUpdateRgn( HDC arg1, HWND arg2) 869 869 { 870 870 #ifdef DEBUG … … 2239 2239 *****************************************************************************/ 2240 2240 2241 BOOL WIN32API GetKeyboardLayoutNameA(LPTSTR pwszKLID) 2241 // @@@PH Win32 BOOL's are casted to INTs 2242 INT WIN32API GetKeyboardLayoutNameA(LPTSTR pwszKLID) 2242 2243 { 2243 2244 dprintf(("USER32:GetKeyboardLayoutNameA (%08x) not implemented.", … … 2263 2264 *****************************************************************************/ 2264 2265 2265 BOOL WIN32API GetKeyboardLayoutNameW(LPWSTR pwszKLID) 2266 // @@@PH Win32 BOOL's are casted to INTs 2267 INT WIN32API GetKeyboardLayoutNameW(LPWSTR pwszKLID) 2266 2268 { 2267 2269 dprintf(("USER32:GetKeyboardLayoutNameW (%08x) not implemented.", -
trunk/src/user32/new/win32wbase.cpp
r753 r780 1 /* $Id: win32wbase.cpp,v 1. 4 1999-08-31 14:38:09 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.5 1999-09-01 19:12:22 phaller Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 37 37 #include "win32wndhandle.h" 38 38 #include "heapshared.h" 39 39 40 40 41 #define HAS_DLGFRAME(style,exStyle) \ -
trunk/src/user32/new/winscrollbar.cpp
r332 r780 1 /* $Id: winscrollbar.cpp,v 1. 2 1999-07-18 18:04:30 sandervlExp $ */1 /* $Id: winscrollbar.cpp,v 1.3 1999-09-01 19:12:23 phaller Exp $ */ 2 2 /* 3 3 * Win32 scrollbar functions for OS/2 … … 81 81 //****************************************************************************** 82 82 //****************************************************************************** 83 BOOLWIN32API ScrollWindowEx( HWND arg1, int arg2, int arg3, const RECT * arg4, const RECT * arg5, HRGN arg6, PRECT arg7, UINT arg8)83 INT WIN32API ScrollWindowEx( HWND arg1, int arg2, int arg3, const RECT * arg4, const RECT * arg5, HRGN arg6, PRECT arg7, UINT arg8) 84 84 { 85 85 #ifdef DEBUG
Note:
See TracChangeset
for help on using the changeset viewer.