Ignore:
Timestamp:
Aug 29, 2002, 5:46:24 PM (23 years ago)
Author:
umoeller
Message:

Misc changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/winh.c

    r215 r216  
    40084008 *
    40094009 *@@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
     4013HWND winhCreateControl(HWND hwndParent,             // in: parent window
     4014                       HWND hwndOwner,              // in: owner window
    40134015                       const char *pcszClass,       // in: window class (e.g. WC_BUTTON)
    40144016                       const char *pcszText,        // in: window title
     
    40164018                       ULONG ulID)                  // in: control ID
    40174019{
    4018     return (WinCreateWindow(hwndParentAndOwner,
    4019                             (PSZ)pcszClass,
    4020                             (PSZ)pcszText,
    4021                             ulStyle,
    4022                             0, 0, 0, 0,
    4023                             hwndParentAndOwner,
    4024                             HWND_TOP,
    4025                             ulID,
    4026                             NULL,
    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);
    40284030}
    40294031
Note: See TracChangeset for help on using the changeset viewer.