Changeset 1364


Ignore:
Timestamp:
Oct 19, 1999, 9:25:31 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r1362 r1364  
    1  /* $Id: changelog,v 1.343 1999-10-19 18:02:31 sandervl Exp $ */
     1 /* $Id: changelog,v 1.344 1999-10-19 19:25:31 sandervl Exp $ */
    22
    33 99-10-19: Sander van Leeuwen <sandervl@xs4all.nl>
     
    99        - USER32: Windows without a parent have the desktop window as parent.
    1010                  MDI additions.
     11                  Combobox bugfixes.
     12                  GetWindowTextA/W bugfixes (return 0 if there's no window name)
    1113
    1214 99-10-19: Yuri Dario <mc6530@mclink.it>
  • trunk/include/win/controls.h

    r388 r1364  
    1 /* $Id: controls.h,v 1.6 1999-07-24 17:55:09 sandervl Exp $ */
     1/* $Id: controls.h,v 1.7 1999-10-19 19:25:12 sandervl Exp $ */
    22/*
    33 * Win32 common controls
     
    1919void CONTROLS_Unregister();
    2020
     21#define BUTTON_CONTROL          0
     22#define STATIC_CONTROL          1
     23#define SCROLLBAR_CONTROL       2
     24#define LISTBOX_CONTROL         3
     25#define COMBOLBOX_CONTROL       4
     26#define COMBOBOX_CONTROL        5
     27#define EDIT_CONTROL            6
     28#define MDICLIENT_CONTROL       7
     29#define DIALOG_CONTROL          8
     30#define DESKTOP_CONTROL         9
     31#define MAX_CONTROLS            10
     32
     33BOOL WIDGETS_IsControl(Win32BaseWindow *window, int control);
     34
     35
    2136#endif // __CONTROLS_H
Note: See TracChangeset for help on using the changeset viewer.