Ignore:
Timestamp:
Jul 20, 1999, 5:46:54 PM (26 years ago)
Author:
sandervl
Message:

Accelerator + icon changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wnd.h

    r342 r345  
    1 /* $Id: win32wnd.h,v 1.16 1999-07-20 07:42:36 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.17 1999-07-20 15:46:54 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    9393         void   setFlags(DWORD newflags)        { flags = newflags; };
    9494
    95          ULONG  GetAccelTable()                     { return (ULONG) acceltableResource; };
     95         HACCEL GetAccelTable()                     { return (HACCEL) acceltableResource; };
    9696         BOOL   SetAccelTable(ULONG hAccel);
    9797
    98          ULONG  GetMenu()                           { return (ULONG) menuResource; };
     98         HMENU  GetMenu()                           { return (HMENU) menuResource; };
    9999         BOOL   SetMenu(ULONG hMenu);
     100
     101         BOOL   SetIcon(HICON hIcon);
     102         HICON  GetIcon()                           { return (HICON) iconResource; };
    100103
    101104         BOOL   ShowWindow(ULONG nCmdShow);
     
    191194 Win32Resource *acceltableResource;
    192195 Win32Resource *menuResource;
     196 Win32Resource *iconResource;
    193197
    194198        char   *windowName;
Note: See TracChangeset for help on using the changeset viewer.