Changeset 1118 for trunk/src/user32/windlg.cpp
- Timestamp:
- Oct 4, 1999, 11:56:04 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/windlg.cpp
r1063 r1118 1 /* $Id: windlg.cpp,v 1. 2 1999-09-26 14:44:58sandervl Exp $ */1 /* $Id: windlg.cpp,v 1.3 1999-10-04 09:56:03 sandervl Exp $ */ 2 2 /* 3 3 * Win32 dialog apis for OS/2 … … 39 39 return 0; 40 40 41 return CreateDialogIndirectParamA(hInst, ( DLGTEMPLATE*)LoadResource(hInst, hrsrc),41 return CreateDialogIndirectParamA(hInst, (LPCDLGTEMPLATEA)LoadResource(hInst, hrsrc), 42 42 hwndOwner, dlgproc, lParamInit); 43 43 } … … 53 53 return 0; 54 54 55 return CreateDialogIndirectParamW(hInst, ( DLGTEMPLATE*)LoadResource(hInst, hrsrc),55 return CreateDialogIndirectParamW(hInst, (LPCDLGTEMPLATEW)LoadResource(hInst, hrsrc), 56 56 hwndOwner, dlgproc, lParamInit); 57 57 } … … 59 59 //****************************************************************************** 60 60 HWND WIN32API CreateDialogIndirectParamA(HINSTANCE hInst, 61 DLGTEMPLATE *dlgtemplate,61 LPCDLGTEMPLATEA dlgtemplate, 62 62 HWND hwndParent, DLGPROC dlgproc, 63 63 LPARAM lParamInit) … … 87 87 //****************************************************************************** 88 88 HWND WIN32API CreateDialogIndirectParamW(HINSTANCE hInst, 89 DLGTEMPLATE *dlgtemplate,89 LPCDLGTEMPLATEW dlgtemplate, 90 90 HWND hwndParent, DLGPROC dlgproc, 91 91 LPARAM lParamInit) … … 115 115 //****************************************************************************** 116 116 INT WIN32API DialogBoxIndirectParamA(HINSTANCE hInst, 117 DLGTEMPLATE *dlgtemplate,117 LPCDLGTEMPLATEA dlgtemplate, 118 118 HWND hwndParent, DLGPROC dlgproc, 119 119 LPARAM lParamInit) … … 136 136 //****************************************************************************** 137 137 //****************************************************************************** 138 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hInst, DLGTEMPLATE *dlgtemplate,138 INT WIN32API DialogBoxIndirectParamW(HINSTANCE hInst, LPCDLGTEMPLATEW dlgtemplate, 139 139 HWND hwndParent, DLGPROC dlgproc, 140 140 LPARAM lParamInit)
Note:
See TracChangeset
for help on using the changeset viewer.