source: trunk/src/user32/new/oslibstyle.h@ 524

Last change on this file since 524 was 300, checked in by sandervl, 26 years ago

Very preliminary code for Open32 replacement

File size: 1.4 KB
Line 
1/* $Id: oslibstyle.h,v 1.1 1999-07-14 08:35:35 sandervl Exp $ */
2/*
3 * Win32 Window styles
4 *
5 *
6 * Copyright 1999 Sander van Leeuwen (sandervl@xs4all.nl)
7 *
8 *
9 * Project Odin Software License can be found in LICENSE.TXT
10 *
11 */
12#ifndef __OSLIBSTYLE_H__
13#define __OSLIBSTYLE_H__
14
15/* Window Styles */
16#define WINWS_OVERLAPPED 0x00000000L
17#define WINWS_POPUP 0x80000000L
18#define WINWS_CHILD 0x40000000L
19#define WINWS_MINIMIZE 0x20000000L
20#define WINWS_VISIBLE 0x10000000L
21#define WINWS_DISABLED 0x08000000L
22#define WINWS_CLIPSIBLINGS 0x04000000L
23#define WINWS_CLIPCHILDREN 0x02000000L
24#define WINWS_MAXIMIZE 0x01000000L
25#define WINWS_CAPTION 0x00C00000L
26#define WINWS_BORDER 0x00800000L
27#define WINWS_DLGFRAME 0x00400000L
28#define WINWS_VSCROLL 0x00200000L
29#define WINWS_HSCROLL 0x00100000L
30#define WINWS_SYSMENU 0x00080000L
31#define WINWS_THICKFRAME 0x00040000L
32#define WINWS_GROUP 0x00020000L
33#define WINWS_TABSTOP 0x00010000L
34#define WINWS_MINIMIZEBOX 0x00020000L
35#define WINWS_MAXIMIZEBOX 0x00010000L
36
37/* Window extended styles */
38#define WINWS_EX_DLGMODALFRAME 0x00000001L
39#define WINWS_EX_DRAGDETECT 0x00000002L
40#define WINWS_EX_NOPARENTNOTIFY 0x00000004L
41#define WINWS_EX_TOPMOST 0x00000008L
42#define WINWS_EX_ACCEPTFILES 0x00000010L
43#define WINWS_EX_TRANSPARENT 0x00000020L
44
45#endif //__OSLIBSTYLE_H__
Note: See TracBrowser for help on using the repository browser.