Changeset 698 for trunk/include


Ignore:
Timestamp:
Aug 25, 1999, 5:47:40 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win32type.h

    r692 r698  
    1 /* $Id: win32type.h,v 1.15 1999-08-25 14:55:25 sandervl Exp $ */
     1/* $Id: win32type.h,v 1.16 1999-08-25 15:47:40 sandervl Exp $ */
    22
    33#ifndef __WIN32TYPE_H__
     
    107107typedef ULONGULONG  *PULONGULONG;
    108108typedef DWORDLONG *PDWORDLONG;
    109 #define BOOL      int
     109#define BOOL      int
    110110
    111111#define DECLSPEC_IMPORT
     
    278278} MEMORY_BASIC_INFORMATION,*PMEMORY_BASIC_INFORMATION,*LPMEMORY_BASIC_INFORMATION;
    279279
     280/* WM_WINDOWPOSCHANGING/CHANGED struct */
     281typedef struct tagWINDOWPOS
     282{
     283    HWND  hwnd;
     284    HWND  hwndInsertAfter;
     285    INT   x;
     286    INT   y;
     287    INT   cx;
     288    INT   cy;
     289    UINT  flags;
     290} WINDOWPOS, *PWINDOWPOS, *LPWINDOWPOS;
     291
    280292#pragma pack()
    281293
  • trunk/include/winconst.h

    r689 r698  
    1 /* $Id: winconst.h,v 1.2 1999-08-25 14:26:21 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.3 1999-08-25 15:47:40 sandervl Exp $ */
    22
    33/*
     
    100100
    101101
    102 #define DUPLICATE_CLOSE_SOURCE          0x00000001
    103 #define DUPLICATE_SAME_ACCESS           0x00000002
     102#define DUPLICATE_CLOSE_SOURCE          0x00000001
     103#define DUPLICATE_SAME_ACCESS           0x00000002
    104104
    105105#define HANDLE_FLAG_INHERIT             0x00000001
    106106#define HANDLE_FLAG_PROTECT_FROM_CLOSE  0x00000002
     107
     108/* SetWindowPos() and WINDOWPOS flags */
     109#define SWP_NOSIZE_W          0x0001
     110#define SWP_NOMOVE_W          0x0002
     111#define SWP_NOZORDER_W        0x0004
     112#define SWP_NOREDRAW_W        0x0008
     113#define SWP_NOACTIVATE_W      0x0010
     114#define SWP_FRAMECHANGED_W    0x0020  /* The frame changed: send WM_NCCALCSIZE */
     115#define SWP_SHOWWINDOW_W      0x0040
     116#define SWP_HIDEWINDOW_W      0x0080
     117#define SWP_NOCOPYBITS_W      0x0100
     118#define SWP_NOOWNERZORDER_W   0x0200  /* Don't do owner Z ordering */
     119
     120#define SWP_DRAWFRAME_W       SWP_FRAMECHANGED_W
     121#define SWP_NOREPOSITION_W    SWP_NOOWNERZORDER_W
     122
     123#define SWP_NOSENDCHANGING_W  0x0400
     124#define SWP_DEFERERASE_W      0x2000
     125
     126/* undocumented SWP flags - from SDK 3.1 */
     127#define SWP_NOCLIENTSIZE_W    0x0800
     128#define SWP_NOCLIENTMOVE_W    0x1000
     129
     130#define HWND_DESKTOP_W        ((HWND)0)
     131#define HWND_BROADCAST_W      ((HWND)0xffff)
     132
     133/* SetWindowPos() hwndInsertAfter field values */
     134#define HWND_TOP_W            ((HWND)0)
     135#define HWND_BOTTOM_W         ((HWND)1)
     136#define HWND_TOPMOST_W        ((HWND)-1)
     137#define HWND_NOTOPMOST_W      ((HWND)-2)
     138
Note: See TracChangeset for help on using the changeset viewer.