change explorer quick launch icon to use default 'my computer' icon instead of a...
[reactos.git] / rosapps / dflat32 / classdef.h
1 /* ---------------- classdef.h --------------- */
2
3 #ifndef CLASSDEF_H
4 #define CLASSDEF_H
5
6 typedef struct DfClassDefs {
7 DFCLASS base; /* base window class */
8 int (*wndproc)(struct DfWindow *,enum DfMessages,DF_PARAM,DF_PARAM);
9 int attrib;
10 } DFCLASSDEFS;
11
12 extern DFCLASSDEFS DfClassDefs[];
13
14 #define DF_SHADOW 0x0001
15 #define DF_MOVEABLE 0x0002
16 #define DF_SIZEABLE 0x0004
17 #define DF_HASMENUBAR 0x0008
18 #define DF_VSCROLLBAR 0x0010
19 #define DF_HSCROLLBAR 0x0020
20 #define DF_VISIBLE 0x0040
21 #define DF_SAVESELF 0x0080
22 #define DF_HASTITLEBAR 0x0100
23 #define DF_CONTROLBOX 0x0200
24 #define DF_MINMAXBOX 0x0400
25 #define DF_NOCLIP 0x0800
26 #define DF_READONLY 0x1000
27 #define DF_MULTILINE 0x2000
28 #define DF_HASBORDER 0x4000
29 #define DF_HASSTATUSBAR 0x8000
30
31 #endif