Changeset 216 for trunk/src/helpers/winh.c
- Timestamp:
- Aug 29, 2002, 5:46:24 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/winh.c
r215 r216 4008 4008 * 4009 4009 *@@added V0.9.9 (2001-03-13) [umoeller] 4010 */ 4011 4012 HWND winhCreateControl(HWND hwndParentAndOwner, // in: owner and parent window 4010 *@@changed V0.9.21 (2002-08-26) [umoeller]: added separate hwndOwner 4011 */ 4012 4013 HWND winhCreateControl(HWND hwndParent, // in: parent window 4014 HWND hwndOwner, // in: owner window 4013 4015 const char *pcszClass, // in: window class (e.g. WC_BUTTON) 4014 4016 const char *pcszText, // in: window title … … 4016 4018 ULONG ulID) // in: control ID 4017 4019 { 4018 return (WinCreateWindow(hwndParentAndOwner,4019 4020 4021 4022 4023 hwndParentAndOwner,4024 4025 4026 4027 NULL));4020 return WinCreateWindow(hwndParent, 4021 (PSZ)pcszClass, 4022 (PSZ)pcszText, 4023 ulStyle, 4024 0, 0, 0, 0, 4025 hwndOwner, 4026 HWND_TOP, 4027 ulID, 4028 NULL, 4029 NULL); 4028 4030 } 4029 4031
Note:
See TracChangeset
for help on using the changeset viewer.