InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
WinDialogStructs.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Mouhammad Fakhoury
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifdef WINDOWS
25 
26 #ifndef __WinDialogStructs__
27 #define __WinDialogStructs__
28 
30 // Extended dialog templates (new in Win95)
31 
32 
33 struct DlgTmpl
34 {
35  WORD dlgVer;
36  WORD signature;
37  DWORD helpID;
38  DWORD exStyle;
39  DWORD style;
40  WORD cdit;//cDlgItems;
41  short x;
42  short y;
43  short cx;
44  short cy;
45 };
46 
47 struct DlgItemTmpl
48 {
49  DWORD helpID;
50  DWORD dwExtendedStyle;
51  DWORD style;
52  short x;
53  short y;
54  short cx;
55  short cy;
56  DWORD id;
57 };
58 
59 
60 #endif //__WinDialogStructs__
61 
62 #endif // WINDOWS