Changeset 780 for trunk/src/user32
- Timestamp:
- Sep 1, 1999, 9:12:23 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/dialog.cpp
r265 r780 1 /* $Id: dialog.cpp,v 1. 6 1999-07-04 19:02:38 sandervlExp $ */1 /* $Id: dialog.cpp,v 1.7 1999-09-01 19:12:18 phaller Exp $ */ 2 2 3 3 /* … … 128 128 //****************************************************************************** 129 129 //****************************************************************************** 130 BOOLWIN32API DialogBoxIndirectParamA(HINSTANCE hinst,130 INT WIN32API DialogBoxIndirectParamA(HINSTANCE hinst, 131 131 DLGTEMPLATE *dlgtemplate, 132 132 HWND hwndParent, DLGPROC dlgproc, 133 133 LPARAM lParamInit) 134 134 { 135 BOOLrc;135 INT rc; 136 136 DLGTEMPLATE *os2dlg; 137 137 … … 147 147 //****************************************************************************** 148 148 //****************************************************************************** 149 BOOLWIN32API DialogBoxIndirectParamW(HINSTANCE hinst,149 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hinst, 150 150 DLGTEMPLATE *dlgtemplate, 151 151 HWND hwndParent, DLGPROC dlgproc, 152 152 LPARAM lParamInit) 153 153 { 154 BOOLrc;154 INT rc; 155 155 DLGTEMPLATE *os2dlg; 156 156 -
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 -
trunk/src/user32/user32.cpp
r755 r780 1 /* $Id: user32.cpp,v 1.2 2 1999-08-31 14:37:27 sandervlExp $ */1 /* $Id: user32.cpp,v 1.23 1999-09-01 19:12:18 phaller Exp $ */ 2 2 3 3 /* … … 1283 1283 1284 1284 1285 HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags) 1285 HWND WIN32API ChildWindowFromPointEx (HWND hwndParent, POINT pt, UINT uFlags) 1286 1286 { 1287 1287 RECT rect; … … 1899 1899 //****************************************************************************** 1900 1900 //****************************************************************************** 1901 BOOLWIN32API ExcludeUpdateRgn( HDC arg1, HWND arg2)1901 INT WIN32API ExcludeUpdateRgn( HDC arg1, HWND arg2) 1902 1902 { 1903 1903 #ifdef DEBUG … … 2763 2763 //****************************************************************************** 2764 2764 //****************************************************************************** 2765 BOOLWIN32API ScrollWindowEx( HWND arg1, int arg2, int arg3, const RECT * arg4, const RECT * arg5, HRGN arg6, PRECT arg7, UINT arg8)2765 INT WIN32API ScrollWindowEx( HWND arg1, int arg2, int arg3, const RECT * arg4, const RECT * arg5, HRGN arg6, PRECT arg7, UINT arg8) 2766 2766 { 2767 2767 #ifdef DEBUG … … 4422 4422 *****************************************************************************/ 4423 4423 4424 BOOL WIN32API GetKeyboardLayoutNameA(LPTSTR pwszKLID) 4424 //@@@PH Win32 BOOLs are casted to INTs. 4425 INT WIN32API GetKeyboardLayoutNameA(LPTSTR pwszKLID) 4425 4426 { 4426 4427 dprintf(("USER32:GetKeyboardLayoutNameA (%08x) not implemented.", … … 4446 4447 *****************************************************************************/ 4447 4448 4448 BOOL WIN32API GetKeyboardLayoutNameW(LPWSTR pwszKLID) 4449 //@@@PH Win32 BOOLs are casted to INTs. 4450 INT WIN32API GetKeyboardLayoutNameW(LPWSTR pwszKLID) 4449 4451 { 4450 4452 dprintf(("USER32:GetKeyboardLayoutNameW (%08x) not implemented.", … … 4906 4908 *****************************************************************************/ 4907 4909 4908 BOOL WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams) 4910 //@@@PH Win32 BOOLs are casted to INTs. 4911 INT WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams) 4909 4912 { 4910 4913 dprintf(("USER32:MessageBoxIndirectW (%08x) not implemented.\n", … … 4930 4933 *****************************************************************************/ 4931 4934 4932 BOOL WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams) 4935 //@@@PH Win32 BOOLs are casted to INTs. 4936 INT WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams) 4933 4937 { 4934 4938 dprintf(("USER32:MessageBoxIndirectA (%08x) not implemented.\n",
Note:
See TracChangeset
for help on using the changeset viewer.