Changeset 8542 for trunk/src/user32/windlg.cpp
- Timestamp:
- Jun 2, 2002, 12:08:10 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windlg.cpp
r8132 r8542 1 /* $Id: windlg.cpp,v 1.3 2 2002-03-28 16:20:07sandervl Exp $ */1 /* $Id: windlg.cpp,v 1.33 2002-06-02 10:07:59 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 68 68 //****************************************************************************** 69 69 HWND WIN32API CreateDialogIndirectParamA(HINSTANCE hInst, 70 LPC DLGTEMPLATEAdlgtemplate,70 LPCVOID dlgtemplate, 71 71 HWND hwndOwner, DLGPROC dlgproc, 72 72 LPARAM lParamInit) … … 101 101 //****************************************************************************** 102 102 HWND WIN32API CreateDialogIndirectParamW(HINSTANCE hInst, 103 LPC DLGTEMPLATEWdlgtemplate,103 LPCVOID dlgtemplate, 104 104 HWND hwndOwner, DLGPROC dlgproc, 105 105 LPARAM lParamInit) … … 135 135 //****************************************************************************** 136 136 INT WIN32API DialogBoxIndirectParamA(HINSTANCE hInst, 137 LPC DLGTEMPLATEAdlgtemplate,137 LPCVOID dlgtemplate, 138 138 HWND hwndOwner, DLGPROC dlgproc, 139 139 LPARAM lParamInit) … … 161 161 //****************************************************************************** 162 162 //****************************************************************************** 163 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hInst, LPC DLGTEMPLATEWdlgtemplate,163 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hInst, LPCVOID dlgtemplate, 164 164 HWND hwndOwner, DLGPROC dlgproc, 165 165 LPARAM lParamInit) … … 260 260 //****************************************************************************** 261 261 //****************************************************************************** 262 BOOLWIN32API IsDlgButtonChecked( HWND hwnd, UINT id)262 UINT WIN32API IsDlgButtonChecked( HWND hwnd, UINT id) 263 263 { 264 264 dprintf(("USER32: IsDlgButtonChecked\n")); … … 477 477 //****************************************************************************** 478 478 //****************************************************************************** 479 UINT WIN32API GetDlgItemTextA(HWND hwnd, int id, LPSTR lpszName, UINT cch)479 INT WIN32API GetDlgItemTextA(HWND hwnd, int id, LPSTR lpszName, UINT cch) 480 480 { 481 481 return SendDlgItemMessageA( hwnd, id, WM_GETTEXT, cch, (LPARAM)lpszName); … … 483 483 //***************************************************************************** 484 484 //***************************************************************************** 485 UINT WIN32API GetDlgItemTextW(HWND hwnd, int id, LPWSTR lpszName, UINT cch)485 INT WIN32API GetDlgItemTextW(HWND hwnd, int id, LPWSTR lpszName, UINT cch) 486 486 { 487 487 return SendDlgItemMessageW( hwnd, id, WM_GETTEXT, cch, (LPARAM)lpszName);
Note:
See TracChangeset
for help on using the changeset viewer.