Changeset 1344


Ignore:
Timestamp:
Oct 17, 1999, 9:33:01 PM (26 years ago)
Author:
cbratschi
Message:

* empty log message *

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/changelog

    r1341 r1344  
    1  /* $Id: changelog,v 1.336 1999-10-17 18:08:24 sandervl Exp $ */
     1 /* $Id: changelog,v 1.337 1999-10-17 19:33:01 cbratschi Exp $ */
    22
    33 99-10-17: Sander van Leeuwen <sandervl@xs4all.nl>
     
    2626                  Send as few WM_ENTERIDLE messages as possible -> low CPU usage
    2727                  pmframe: removed WinFillRect
     28                  implemented: DrawIcon/DrawIconEx
     29                  fixed static icon size
     30                  pmframe: added PSF_CLIPSIBLINGS
    2831
    2932 99-10-17: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
  • TabularUnified trunk/include/winconst.h

    r1067 r1344  
    1 /* $Id: winconst.h,v 1.10 1999-09-26 22:24:51 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.11 1999-10-17 19:30:51 cbratschi Exp $ */
    22
    33/*
     
    9090#define WS_MINIMIZEBOX_W   0x00020000L
    9191#define WS_MAXIMIZEBOX_W   0x00010000L
     92#define WS_TILED_W         WS_OVERLAPPED_W
     93#define WS_ICONIC_W        WS_MINIMIZE_W
     94#define WS_SIZEBOX_W       WS_THICKFRAME_W
     95#define WS_OVERLAPPEDWINDOW_W (WS_OVERLAPPED_W | WS_CAPTION_W | WS_SYSMENU_W | WS_THICKFRAME_W| WS_MINIMIZEBOX_W | WS_MAXIMIZEBOX_W)
     96#define WS_POPUPWINDOW_W (WS_POPUP_W | WS_BORDER_W | WS_SYSMENU_W)
     97#define WS_CHILDWINDOW_W (WS_CHILD_W)
     98#define WS_TILEDWINDOW_W (WS_OVERLAPPEDWINDOW_W)
    9299
    93100/* Window extended styles */
Note: See TracChangeset for help on using the changeset viewer.