annotate devhelpers/structswin/structs.d @ 124:c39d1446f191

Added dev tools, so they are not in the release code.
author Frank Benoit <benoit@tionex.de>
date Mon, 21 Jul 2008 22:54:04 +0200
parents
children 3ceedeb4be4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
124
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
1 // Author: Frank Benoit
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
2 // This prints the sizes of some C struct how they are defined in the c-bindings
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
3
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
4 import dwt.internal.win32.WINTYPES;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
5
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
6 extern(C) int printf( char*, ... );
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
7
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
8 struct TSizeValue {
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
9 char[] name;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
10 int size;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
11 } ;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
12
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
13 const TSizeValue[] size_values = [
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
14 { "ABC", ABC.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
15 { "ABCFLOAT", ABCFLOAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
16 { "ACCEL", ACCEL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
17 { "ACCESS_ALLOWED_ACE", ACCESS_ALLOWED_ACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
18 { "ACCESS_DENIED_ACE", ACCESS_DENIED_ACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
19 { "ACCESSTIMEOUT", ACCESSTIMEOUT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
20 { "ACE_HEADER", ACE_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
21 { "ACL", ACL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
22 { "ACL_REVISION_INFORMATION", ACL_REVISION_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
23 { "ACL_SIZE_INFORMATION", ACL_SIZE_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
24 { "ACTCTXA", ACTCTXA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
25 { "ACTCTXW", ACTCTXW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
26 { "ACTION_HEADER", ACTION_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
27 { "ADAPTER_STATUS", ADAPTER_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
28 { "ADDJOB_INFO_1", ADDJOB_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
29 { "ANIMATIONINFO", ANIMATIONINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
30 { "APPBARDATA", APPBARDATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
31 { "BITMAP", BITMAP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
32 { "BITMAPCOREHEADER", BITMAPCOREHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
33 { "BITMAPCOREINFO", BITMAPCOREINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
34 { "BITMAPFILEHEADER", BITMAPFILEHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
35 { "BITMAPINFO", BITMAPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
36 { "BITMAPINFOHEADER", BITMAPINFOHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
37 { "BITMAPV4HEADER", BITMAPV4HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
38 { "_BLENDFUNCTION", _BLENDFUNCTION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
39 { "BLOB", BLOB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
40 { "BROWSEINFOA", BROWSEINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
41 { "BROWSEINFOW", BROWSEINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
42 { "BUTTON_IMAGELIST", BUTTON_IMAGELIST.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
43 { "BY_HANDLE_FILE_INFORMATION", BY_HANDLE_FILE_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
44 { "CANDIDATEFORM", CANDIDATEFORM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
45 { "CANDIDATELIST", CANDIDATELIST.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
46 { "CBTACTIVATESTRUCT", CBTACTIVATESTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
47 { "CBT_CREATEWND", CBT_CREATEWND.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
48 { "CHARFORMAT", CHARFORMAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
49 { "CHAR_INFO", CHAR_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
50 { "CHARRANGE", CHARRANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
51 { "CHARSET", CHARSET.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
52 { "CHARSETINFO", CHARSETINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
53 { "CHOOSECOLORA", CHOOSECOLORA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
54 { "CHOOSECOLORW", CHOOSECOLORW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
55 { "CHOOSEFONTA", CHOOSEFONTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
56 { "CHOOSEFONTW", CHOOSEFONTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
57 { "CIDA", CIDA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
58 { "CIEXYZ", CIEXYZ.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
59 { "CIEXYZTRIPLE", CIEXYZTRIPLE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
60 { "CLIENTCREATESTRUCT", CLIENTCREATESTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
61 { "CMINVOKECOMMANDINFO", CMINVOKECOMMANDINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
62 { "COLORADJUSTMENT", COLORADJUSTMENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
63 { "COLORMAP", COLORMAP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
64 { "COMBOBOXINFO", COMBOBOXINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
65 { "COMMCONFIG", COMMCONFIG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
66 { "COMMPROP", COMMPROP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
67 { "COMMTIMEOUTS", COMMTIMEOUTS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
68 { "COMPAREITEMSTRUCT", COMPAREITEMSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
69 { "COMPCOLOR", COMPCOLOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
70 { "COMPOSITIONFORM", COMPOSITIONFORM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
71 { "COMSTAT", COMSTAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
72 { "CONNECTDLGSTRUCT", CONNECTDLGSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
73 { "CONSOLE_CURSOR_INFO", CONSOLE_CURSOR_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
74 { "CONSOLE_SCREEN_BUFFER_INFO", CONSOLE_SCREEN_BUFFER_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
75 { "CONTEXT", CONTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
76 { "CONVCONTEXT", CONVCONTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
77 { "CONVINFO", CONVINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
78 { "COORD", COORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
79 { "COPYDATASTRUCT", COPYDATASTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
80 { "CPINFO", CPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
81 { "CPLINFO", CPLINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
82 { "CREATE_PROCESS_DEBUG_INFO", CREATE_PROCESS_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
83 { "CREATESTRUCT", CREATESTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
84 { "CREATE_THREAD_DEBUG_INFO", CREATE_THREAD_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
85 { "CRITICAL_SECTION", CRITICAL_SECTION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
86 { "CRITICAL_SECTION_DEBUG", CRITICAL_SECTION_DEBUG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
87 { "CURRENCYFMT", CURRENCYFMT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
88 { "CURSORSHAPE", CURSORSHAPE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
89 { "CWPRETSTRUCT", CWPRETSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
90 { "CWPSTRUCT", CWPSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
91 { "DATATYPES_INFO_1", DATATYPES_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
92 { "DCB", DCB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
93 { "DDEACK", DDEACK.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
94 { "DDEADVISE", DDEADVISE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
95 { "DDEDATA", DDEDATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
96 { "DDELN", DDELN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
97 { "DDEML_MSG_HOOK_DATA", DDEML_MSG_HOOK_DATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
98 { "DDEPOKE", DDEPOKE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
99 { "DDEUP", DDEUP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
100 { "DEBUG_EVENT", DEBUG_EVENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
101 { "DEBUGHOOKINFO", DEBUGHOOKINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
102 { "DELETEITEMSTRUCT", DELETEITEMSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
103 { "DEV_BROADCAST_HDR", DEV_BROADCAST_HDR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
104 { "DEV_BROADCAST_OEM", DEV_BROADCAST_OEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
105 { "DEV_BROADCAST_PORT", DEV_BROADCAST_PORT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
106 { "_DEV_BROADCAST_USERDEFINED", _DEV_BROADCAST_USERDEFINED.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
107 { "DEV_BROADCAST_VOLUME", DEV_BROADCAST_VOLUME.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
108 { "DEVMODE", DEVMODE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
109 { "DEVMODEA dvmd", DEVMODEA dvmd.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
110 { "DEVMODEW dvmd", DEVMODEW dvmd.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
111 { "DEVNAMES", DEVNAMES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
112 { "DIBSECTION", DIBSECTION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
113 { "DISCDLGSTRUCT", DISCDLGSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
114 { "DISK_GEOMETRY", DISK_GEOMETRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
115 { "DISK_PERFORMANCE", DISK_PERFORMANCE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
116 { "DLGITEMTEMPLATE", DLGITEMTEMPLATE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
117 { "DLGTEMPLATE", DLGTEMPLATE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
118 { "DLLVERSIONINFO", DLLVERSIONINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
119 { "DOC_INFO_1", DOC_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
120 { "DOC_INFO_2", DOC_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
121 { "DOCINFOA", DOCINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
122 { "DOCINFOW", DOCINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
123 { "DRAGLISTINFO", DRAGLISTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
124 { "DRAWITEMSTRUCT", DRAWITEMSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
125 { "DRAWTEXTPARAMS", DRAWTEXTPARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
126 { "DRIVE_LAYOUT_INFORMATION", DRIVE_LAYOUT_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
127 { "DRIVER_INFO_1", DRIVER_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
128 { "DRIVER_INFO_2", DRIVER_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
129 { "DRIVER_INFO_3", DRIVER_INFO_3.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
130 { "DROPFILES", DROPFILES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
131 { "EDITSTREAM", EDITSTREAM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
132 { "EMPTYRECORD", EMPTYRECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
133 { "EMR", EMR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
134 { "EMRABORTPATH", EMRABORTPATH.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
135 { "EMRANGLEARC", EMRANGLEARC.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
136 { "EMRARC", EMRARC.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
137 { "EMRBITBLT", EMRBITBLT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
138 { "EMRCREATEBRUSHINDIRECT", EMRCREATEBRUSHINDIRECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
139 { "EMRCREATECOLORSPACE", EMRCREATECOLORSPACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
140 { "EMRCREATEDIBPATTERNBRUSHPT", EMRCREATEDIBPATTERNBRUSHPT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
141 { "EMRCREATEMONOBRUSH", EMRCREATEMONOBRUSH.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
142 { "EMRCREATEPALETTE", EMRCREATEPALETTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
143 { "EMRCREATEPEN", EMRCREATEPEN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
144 { "EMRELLIPSE", EMRELLIPSE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
145 { "EMREOF", EMREOF.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
146 { "EMREXCLUDECLIPRECT", EMREXCLUDECLIPRECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
147 { "EMREXTCREATEFONTINDIRECTW", EMREXTCREATEFONTINDIRECTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
148 { "EMREXTCREATEPEN", EMREXTCREATEPEN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
149 { "EMREXTFLOODFILL", EMREXTFLOODFILL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
150 { "EMREXTSELECTCLIPRGN", EMREXTSELECTCLIPRGN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
151 { "EMREXTTEXTOUTA", EMREXTTEXTOUTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
152 { "EMRFILLPATH", EMRFILLPATH.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
153 { "EMRFILLRGN", EMRFILLRGN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
154 { "EMRFORMAT", EMRFORMAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
155 { "EMRFRAMERGN", EMRFRAMERGN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
156 { "EMRGDICOMMENT", EMRGDICOMMENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
157 { "EMRINVERTRGN", EMRINVERTRGN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
158 { "EMRLINETO", EMRLINETO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
159 { "EMRMASKBLT", EMRMASKBLT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
160 { "EMRMODIFYWORLDTRANSFORM", EMRMODIFYWORLDTRANSFORM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
161 { "EMROFFSETCLIPRGN", EMROFFSETCLIPRGN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
162 { "EMRPLGBLT", EMRPLGBLT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
163 { "EMRPOLYDRAW", EMRPOLYDRAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
164 { "EMRPOLYDRAW16", EMRPOLYDRAW16.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
165 { "EMRPOLYLINE", EMRPOLYLINE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
166 { "EMRPOLYLINE16", EMRPOLYLINE16.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
167 { "EMRPOLYPOLYLINE", EMRPOLYPOLYLINE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
168 { "EMRPOLYPOLYLINE16", EMRPOLYPOLYLINE16.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
169 { "EMRPOLYTEXTOUTA", EMRPOLYTEXTOUTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
170 { "EMRRESIZEPALETTE", EMRRESIZEPALETTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
171 { "EMRRESTOREDC", EMRRESTOREDC.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
172 { "EMRROUNDRECT", EMRROUNDRECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
173 { "EMRSCALEVIEWPORTEXTEX", EMRSCALEVIEWPORTEXTEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
174 { "EMRSELECTCLIPPATH", EMRSELECTCLIPPATH.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
175 { "EMRSELECTCOLORSPACE", EMRSELECTCOLORSPACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
176 { "EMRSELECTOBJECT", EMRSELECTOBJECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
177 { "EMRSELECTPALETTE", EMRSELECTPALETTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
178 { "EMRSETARCDIRECTION", EMRSETARCDIRECTION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
179 { "EMRSETBKCOLOR", EMRSETBKCOLOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
180 { "EMRSETCOLORADJUSTMENT", EMRSETCOLORADJUSTMENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
181 { "EMRSETDIBITSTODEVICE", EMRSETDIBITSTODEVICE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
182 { "EMRSETMAPPERFLAGS", EMRSETMAPPERFLAGS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
183 { "EMRSETMITERLIMIT", EMRSETMITERLIMIT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
184 { "EMRSETPALETTEENTRIES", EMRSETPALETTEENTRIES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
185 { "EMRSETPIXELV", EMRSETPIXELV.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
186 { "EMRSETVIEWPORTEXTEX", EMRSETVIEWPORTEXTEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
187 { "EMRSETVIEWPORTORGEX", EMRSETVIEWPORTORGEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
188 { "EMRSETWORLDTRANSFORM", EMRSETWORLDTRANSFORM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
189 { "EMRSTRETCHBLT", EMRSTRETCHBLT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
190 { "EMRSTRETCHDIBITS", EMRSTRETCHDIBITS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
191 { "EMRTEXT", EMRTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
192 { "ENCORRECTTEXT", ENCORRECTTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
193 { "ENDROPFILES", ENDROPFILES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
194 { "ENHMETAHEADER", ENHMETAHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
195 { "ENHMETARECORD", ENHMETARECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
196 { "ENOLEOPFAILED", ENOLEOPFAILED.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
197 { "ENPROTECTED", ENPROTECTED.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
198 { "ENSAVECLIPBOARD", ENSAVECLIPBOARD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
199 { "ENUMLOGFONTA", ENUMLOGFONTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
200 { "ENUMLOGFONTEXA", ENUMLOGFONTEXA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
201 { "ENUMLOGFONTEXW", ENUMLOGFONTEXW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
202 { "ENUMLOGFONTW", ENUMLOGFONTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
203 { "ENUM_SERVICE_STATUS", ENUM_SERVICE_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
204 { "EVENTLOGRECORD", EVENTLOGRECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
205 { "EVENTMSG", EVENTMSG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
206 { "EXCEPTION_DEBUG_INFO", EXCEPTION_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
207 { "EXCEPTION_POINTERS", EXCEPTION_POINTERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
208 { "EXCEPTION_RECORD", EXCEPTION_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
209 { "EXIT_PROCESS_DEBUG_INFO", EXIT_PROCESS_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
210 { "EXIT_THREAD_DEBUG_INFO", EXIT_THREAD_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
211 { "EXT_BUTTON", EXT_BUTTON.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
212 { "EXTLOGFONT", EXTLOGFONT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
213 { "EXTLOGPEN", EXTLOGPEN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
214 { "FILETIME", FILETIME.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
215 { "FILTERKEYS", FILTERKEYS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
216 { "FIND_NAME_BUFFER", FIND_NAME_BUFFER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
217 { "FIND_NAME_HEADER", FIND_NAME_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
218 { "FINDREPLACE", FINDREPLACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
219 { "FINDTEXTEX", FINDTEXTEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
220 { "FIXED", FIXED.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
221 { "FLOATING_SAVE_AREA", FLOATING_SAVE_AREA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
222 { "FMS_GETDRIVEINFO", FMS_GETDRIVEINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
223 { "FMS_GETFILESEL", FMS_GETFILESEL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
224 { "FMS_LOAD", FMS_LOAD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
225 { "FMS_TOOLBARLOAD", FMS_TOOLBARLOAD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
226 { "FOCUS_EVENT_RECORD", FOCUS_EVENT_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
227 { "FONTSIGNATURE", FONTSIGNATURE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
228 { "FORMAT_PARAMETERS", FORMAT_PARAMETERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
229 { "FORMATRANGE", FORMATRANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
230 { "FORM_INFO_1", FORM_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
231 { "GCP_RESULTSA", GCP_RESULTSA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
232 { "GCP_RESULTSW", GCP_RESULTSW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
233 { "GENERIC_MAPPING", GENERIC_MAPPING.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
234 { "GLYPHMETRICS", GLYPHMETRICS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
235 { "GLYPHMETRICSFLOAT", GLYPHMETRICSFLOAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
236 { "GOFFSET", GOFFSET.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
237 { "GRADIENT_RECT", GRADIENT_RECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
238 { "GROUP_INFO_2", GROUP_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
239 { "__GUID", __GUID.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
240 { "GUITHREADINFO", GUITHREADINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
241 { "HANDLETABLE", HANDLETABLE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
242 { "HD_HITTESTINFO", HD_HITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
243 { "HD_ITEM", HD_ITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
244 { "HDITEMA", HDITEMA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
245 { "HDITEMW", HDITEMW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
246 { "HD_LAYOUT", HD_LAYOUT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
247 { "HD_NOTIFY", HD_NOTIFY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
248 { "HELPINFO", HELPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
249 { "HELPWININFO", HELPWININFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
250 { "HIGHCONTRASTA", HIGHCONTRASTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
251 { "HIGHCONTRASTW", HIGHCONTRASTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
252 { "HSZPAIR", HSZPAIR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
253 { "ICONINFO", ICONINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
254 { "ICONMETRICS", ICONMETRICS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
255 { "IMAGE_DOS_HEADER", IMAGE_DOS_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
256 { "IMAGEINFO", IMAGEINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
257 { "INITCOMMONCONTROLSEX", INITCOMMONCONTROLSEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
258 { "INPUT", INPUT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
259 { "INPUT_RECORD", INPUT_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
260 { "ITEMIDLIST", ITEMIDLIST.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
261 { "JOB_INFO_1", JOB_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
262 { "JOB_INFO_2", JOB_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
263 { "KERNINGPAIR", KERNINGPAIR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
264 { "KEYBDINPUT", KEYBDINPUT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
265 { "KEY_EVENT_RECORD", KEY_EVENT_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
266 { "LANA_ENUM", LANA_ENUM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
267 { "LAYERPLANEDESCRIPTOR", LAYERPLANEDESCRIPTOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
268 { "LDT_ENTRY", LDT_ENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
269 { "LIST_ENTRY", LIST_ENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
270 { "LITEM", LITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
271 { "LOAD_DLL_DEBUG_INFO", LOAD_DLL_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
272 { "LOCALESIGNATURE", LOCALESIGNATURE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
273 { "LOCALGROUP_INFO_0", LOCALGROUP_INFO_0.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
274 { "LOCALGROUP_MEMBERS_INFO_0", LOCALGROUP_MEMBERS_INFO_0.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
275 { "LOCALGROUP_MEMBERS_INFO_3", LOCALGROUP_MEMBERS_INFO_3.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
276 { "LOGBRUSH", LOGBRUSH.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
277 { "LOGCOLORSPACE", LOGCOLORSPACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
278 { "LOGFONTA", LOGFONTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
279 { "LOGFONTW", LOGFONTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
280 { "LOGPALETTE", LOGPALETTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
281 { "LOGPEN", LOGPEN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
282 { "LUID_AND_ATTRIBUTES", LUID_AND_ATTRIBUTES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
283 { "LV_COLUMN", LV_COLUMN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
284 { "LVCOLUMNA", LVCOLUMNA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
285 { "LVCOLUMNW", LVCOLUMNW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
286 { "LV_DISPINFO", LV_DISPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
287 { "LV_FINDINFO", LV_FINDINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
288 { "LVFINDINFOA", LVFINDINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
289 { "LVFINDINFOW", LVFINDINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
290 { "LVHITTESTINFO", LVHITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
291 { "LV_HITTESTINFO", LV_HITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
292 { "LV_ITEM", LV_ITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
293 { "LVITEMA", LVITEMA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
294 { "LVITEMW", LVITEMW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
295 { "LV_KEYDOWN", LV_KEYDOWN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
296 { "MARGINS", MARGINS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
297 { "MAT2", MAT2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
298 { "MDICREATESTRUCT", MDICREATESTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
299 { "MEASUREITEMSTRUCT", MEASUREITEMSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
300 { "MEMORY_BASIC_INFORMATION", MEMORY_BASIC_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
301 { "MEMORYSTATUS", MEMORYSTATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
302 { "MENUBARINFO", MENUBARINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
303 { "MENU_EVENT_RECORD", MENU_EVENT_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
304 { "MENUEX_TEMPLATE_HEADER", MENUEX_TEMPLATE_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
305 { "MENUEX_TEMPLATE_ITEM", MENUEX_TEMPLATE_ITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
306 { "MENUINFO", MENUINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
307 { "MENUITEMINFOA", MENUITEMINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
308 { "MENUITEMINFOW", MENUITEMINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
309 { "MENUITEMTEMPLATE", MENUITEMTEMPLATE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
310 { "MENUITEMTEMPLATEHEADER", MENUITEMTEMPLATEHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
311 { "MENUTEMPLATE", MENUTEMPLATE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
312 { "METAFILEPICT", METAFILEPICT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
313 { "METAHEADER", METAHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
314 { "METARECORD", METARECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
315 { "MINIMIZEDMETRICS", MINIMIZEDMETRICS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
316 { "MINMAXINFO", MINMAXINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
317 { "MODEMDEVCAPS", MODEMDEVCAPS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
318 { "MODEMSETTINGS", MODEMSETTINGS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
319 { "MONCBSTRUCT", MONCBSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
320 { "MONCONVSTRUCT", MONCONVSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
321 { "MONERRSTRUCT", MONERRSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
322 { "MONHSZSTRUCT", MONHSZSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
323 { "MONITORINFO", MONITORINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
324 { "MONITOR_INFO_1", MONITOR_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
325 { "MONITOR_INFO_2", MONITOR_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
326 { "MONLINKSTRUCT", MONLINKSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
327 { "MONMSGSTRUCT", MONMSGSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
328 { "MOUSE_EVENT_RECORD", MOUSE_EVENT_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
329 { "MOUSEHOOKSTRUCT", MOUSEHOOKSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
330 { "MOUSEINPUT", MOUSEINPUT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
331 { "MOUSEKEYS", MOUSEKEYS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
332 { "MSG", MSG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
333 { "MSGBOXPARAMS", MSGBOXPARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
334 { "MSGFILTER", MSGFILTER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
335 { "MULTIKEYHELP", MULTIKEYHELP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
336 { "NAME_BUFFER", NAME_BUFFER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
337 { "NCB", NCB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
338 { "NCCALCSIZE_PARAMS", NCCALCSIZE_PARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
339 { "NDDESHAREINFO", NDDESHAREINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
340 { "NETCONNECTINFOSTRUCT", NETCONNECTINFOSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
341 { "NETINFOSTRUCT", NETINFOSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
342 { "NETRESOURCE", NETRESOURCE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
343 { "NEWCPLINFO", NEWCPLINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
344 { "NEWTEXTMETRICA", NEWTEXTMETRICA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
345 { "NEWTEXTMETRICA ntm", NEWTEXTMETRICA ntm.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
346 { "NEWTEXTMETRICEXA", NEWTEXTMETRICEXA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
347 { "NEWTEXTMETRICEXW", NEWTEXTMETRICEXW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
348 { "NEWTEXTMETRICW", NEWTEXTMETRICW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
349 { "NEWTEXTMETRICW ntm", NEWTEXTMETRICW ntm.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
350 { "NMCUSTOMDRAW", NMCUSTOMDRAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
351 { "NMHDR", NMHDR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
352 { "NMHEADER", NMHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
353 { "NMLINK", NMLINK.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
354 { "NMLISTVIEW", NMLISTVIEW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
355 { "NM_LISTVIEW", NM_LISTVIEW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
356 { "NMLVCUSTOMDRAW", NMLVCUSTOMDRAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
357 { "NMLVDISPINFOA", NMLVDISPINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
358 { "NMLVDISPINFOW", NMLVDISPINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
359 { "NMLVFINDITEMA", NMLVFINDITEMA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
360 { "NMLVFINDITEMW", NMLVFINDITEMW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
361 { "NMLVODSTATECHANGE", NMLVODSTATECHANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
362 { "NMREBARCHEVRON", NMREBARCHEVRON.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
363 { "NMREBARCHILDSIZE", NMREBARCHILDSIZE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
364 { "NMRGINFO", NMRGINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
365 { "NMTBHOTITEM", NMTBHOTITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
366 { "NMTOOLBARA", NMTOOLBARA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
367 { "NMTOOLBARW", NMTOOLBARW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
368 { "NMTREEVIEW", NMTREEVIEW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
369 { "NMTTCUSTOMDRAW", NMTTCUSTOMDRAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
370 { "NMTTDISPINFOA", NMTTDISPINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
371 { "NMTTDISPINFOW", NMTTDISPINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
372 { "NMTVCUSTOMDRAW", NMTVCUSTOMDRAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
373 { "NMTVDISPINFO", NMTVDISPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
374 { "NMTVITEMCHANGE", NMTVITEMCHANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
375 { "NM_UPDOWNW", NM_UPDOWNW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
376 { "NONCLIENTMETRICSA", NONCLIENTMETRICSA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
377 { "NONCLIENTMETRICSW", NONCLIENTMETRICSW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
378 { "NOTIFYICONDATAA", NOTIFYICONDATAA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
379 { "NOTIFYICONDATAW", NOTIFYICONDATAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
380 { "NS_SERVICE_INFO", NS_SERVICE_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
381 { "NUMBERFMT", NUMBERFMT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
382 { "_OBJECT_TYPE_LIST", _OBJECT_TYPE_LIST.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
383 { "OFNOTIFY", OFNOTIFY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
384 { "OFSTRUCT", OFSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
385 { "OPENFILENAME", OPENFILENAME.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
386 { "OPENFILENAMEA", OPENFILENAMEA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
387 { "OPENFILENAMEW", OPENFILENAMEW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
388 { "OSVERSIONINFOA", OSVERSIONINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
389 { "OSVERSIONINFOEX", OSVERSIONINFOEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
390 { "OSVERSIONINFOW", OSVERSIONINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
391 { "OUTLINETEXTMETRICA", OUTLINETEXTMETRICA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
392 { "OUTLINETEXTMETRICW", OUTLINETEXTMETRICW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
393 { "OUTPUT_DEBUG_STRING_INFO", OUTPUT_DEBUG_STRING_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
394 { "OVERLAPPED", OVERLAPPED.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
395 { "PAINTSTRUCT", PAINTSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
396 { "PALETTEENTRY", PALETTEENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
397 { "PANOSE", PANOSE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
398 { "PARAFORMAT", PARAFORMAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
399 { "PARTITION_INFORMATION", PARTITION_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
400 { "PERF_COUNTER_BLOCK", PERF_COUNTER_BLOCK.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
401 { "PERF_COUNTER_DEFINITION", PERF_COUNTER_DEFINITION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
402 { "PERF_DATA_BLOCK", PERF_DATA_BLOCK.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
403 { "PERF_INSTANCE_DEFINITION", PERF_INSTANCE_DEFINITION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
404 { "PERF_OBJECT_TYPE", PERF_OBJECT_TYPE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
405 { "PIXELFORMATDESCRIPTOR", PIXELFORMATDESCRIPTOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
406 { "POINT", POINT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
407 { "POINTFLOAT", POINTFLOAT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
408 { "POINTFX", POINTFX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
409 { "POINTL", POINTL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
410 { "POINTS", POINTS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
411 { "POLYTEXT", POLYTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
412 { "PORT_INFO_1", PORT_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
413 { "PORT_INFO_2", PORT_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
414 { "PREVENT_MEDIA_REMOVAL", PREVENT_MEDIA_REMOVAL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
415 { "PRINTDLGA pd", PRINTDLGA pd.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
416 { "PRINTDLGW pd", PRINTDLGW pd.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
417 { "PRINTER_DEFAULTS", PRINTER_DEFAULTS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
418 { "PRINTER_INFO_1", PRINTER_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
419 { "PRINTER_INFO_2", PRINTER_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
420 { "PRINTER_INFO_3", PRINTER_INFO_3.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
421 { "PRINTER_INFO_4", PRINTER_INFO_4.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
422 { "PRINTER_INFO_5", PRINTER_INFO_5.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
423 { "PRINTER_NOTIFY_INFO", PRINTER_NOTIFY_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
424 { "PRINTER_NOTIFY_INFO_DATA", PRINTER_NOTIFY_INFO_DATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
425 { "PRINTER_NOTIFY_OPTIONS", PRINTER_NOTIFY_OPTIONS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
426 { "PRINTER_NOTIFY_OPTIONS_TYPE", PRINTER_NOTIFY_OPTIONS_TYPE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
427 { "PRINTPROCESSOR_INFO_1", PRINTPROCESSOR_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
428 { "PRIVILEGE_SET", PRIVILEGE_SET.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
429 { "PROCESS_HEAPENTRY", PROCESS_HEAPENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
430 { "PROCESS_INFORMATION", PROCESS_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
431 { "PROPSHEETHEADER", PROPSHEETHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
432 { "PROPSHEETHEADER_U1", PROPSHEETHEADER_U1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
433 { "PROPSHEETHEADER_U2", PROPSHEETHEADER_U2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
434 { "PROPSHEETHEADER_U3", PROPSHEETHEADER_U3.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
435 { "PROPSHEETPAGE", PROPSHEETPAGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
436 { "PROPSHEETPAGE_U1", PROPSHEETPAGE_U1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
437 { "PROPSHEETPAGE_U2", PROPSHEETPAGE_U2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
438 { "PROTOCOL_INFO", PROTOCOL_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
439 { "PROVIDOR_INFO_1", PROVIDOR_INFO_1.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
440 { "PSHNOTIFY", PSHNOTIFY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
441 { "PUNCTUATION", PUNCTUATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
442 { "QUERY_SERVICE_CONFIG", QUERY_SERVICE_CONFIG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
443 { "QUERY_SERVICE_LOCK_STATUS", QUERY_SERVICE_LOCK_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
444 { "RASAMB", RASAMB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
445 { "RASCONN", RASCONN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
446 { "RASCONNSTATUS", RASCONNSTATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
447 { "RASDIALEXTENSIONS", RASDIALEXTENSIONS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
448 { "RASDIALPARAMS", RASDIALPARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
449 { "RASENTRYNAME", RASENTRYNAME.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
450 { "RASPPPIP", RASPPPIP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
451 { "RASPPPIPX", RASPPPIPX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
452 { "RASPPPNBF", RASPPPNBF.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
453 { "RASTERIZER_STATUS", RASTERIZER_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
454 { "REASSIGN_BLOCKS", REASSIGN_BLOCKS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
455 { "REBARBANDINFOA", REBARBANDINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
456 { "REBARBANDINFOW", REBARBANDINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
457 { "RECT", RECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
458 { "RECTL", RECTL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
459 { "REMOTE_NAME_INFO", REMOTE_NAME_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
460 { "REPASTESPECIAL", REPASTESPECIAL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
461 { "REQRESIZE", REQRESIZE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
462 { "RGBQUAD", RGBQUAD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
463 { "RGBQUAD rgbq", RGBQUAD rgbq.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
464 { "RGBTRIPLE", RGBTRIPLE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
465 { "RGNDATA", RGNDATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
466 { "RGNDATAHEADER", RGNDATAHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
467 { "RIP_INFO", RIP_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
468 { "SCRIPT_ANALYSIS", SCRIPT_ANALYSIS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
469 { "SCRIPT_CONTROL", SCRIPT_CONTROL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
470 { "SCRIPT_DIGITSUBSTITUTE", SCRIPT_DIGITSUBSTITUTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
471 { "SCRIPT_FONTPROPERTIES", SCRIPT_FONTPROPERTIES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
472 { "SCRIPT_ITEM", SCRIPT_ITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
473 { "SCRIPT_LOGATTR", SCRIPT_LOGATTR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
474 { "SCRIPT_PROPERTIES", SCRIPT_PROPERTIES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
475 { "SCRIPT_STATE", SCRIPT_STATE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
476 { "SCRIPT_TABDEF", SCRIPT_TABDEF.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
477 { "SCRIPT_VISATTR", SCRIPT_VISATTR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
478 { "SCROLLBARINFO", SCROLLBARINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
479 { "SCROLLINFO", SCROLLINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
480 { "SECURITY_ATTRIBUTES", SECURITY_ATTRIBUTES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
481 { "SECURITY_DESCRIPTOR", SECURITY_DESCRIPTOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
482 { "SECURITY_QUALITY_OF_SERVICE", SECURITY_QUALITY_OF_SERVICE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
483 { "SELCHANGE", SELCHANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
484 { "SERIALKEYS", SERIALKEYS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
485 { "SERVICE_ADDRESS", SERVICE_ADDRESS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
486 { "SERVICE_ADDRESSES", SERVICE_ADDRESSES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
487 { "SERVICE_INFO", SERVICE_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
488 { "SERVICE_STATUS", SERVICE_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
489 { "SERVICE_TABLE_ENTRY", SERVICE_TABLE_ENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
490 { "SERVICE_TYPE_INFO_ABS", SERVICE_TYPE_INFO_ABS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
491 { "SERVICE_TYPE_VALUE_ABS", SERVICE_TYPE_VALUE_ABS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
492 { "SESSION_BUFFER", SESSION_BUFFER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
493 { "SESSION_HEADER", SESSION_HEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
494 { "SET_PARTITION_INFORMATION", SET_PARTITION_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
495 { "SHACTIVATEINFO", SHACTIVATEINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
496 { "SHDRAGIMAGE", SHDRAGIMAGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
497 { "SHELLEXECUTEINFOA", SHELLEXECUTEINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
498 { "SHELLEXECUTEINFOW", SHELLEXECUTEINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
499 { "SHFILEINFOA", SHFILEINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
500 { "SHFILEINFOW", SHFILEINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
501 { "SHFILEOPSTRUCT", SHFILEOPSTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
502 { "SHITEMID", SHITEMID.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
503 { "SHMENUBARINFO", SHMENUBARINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
504 { "SHNAMEMAPPING", SHNAMEMAPPING.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
505 { "SHRGINFO", SHRGINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
506 { "SID", SID.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
507 { "SID_AND_ATTRIBUTES", SID_AND_ATTRIBUTES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
508 { "SID_IDENTIFIER_AUTHORITY", SID_IDENTIFIER_AUTHORITY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
509 { "SINGLE_LIST_ENTRY", SINGLE_LIST_ENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
510 { "SIPINFO", SIPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
511 { "SIZE", SIZE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
512 { "SMALL_RECT", SMALL_RECT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
513 { "SOUNDSENTRY", SOUNDSENTRY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
514 { "STARTUPINFO", STARTUPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
515 { "STICKYKEYS", STICKYKEYS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
516 { "STRRET", STRRET.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
517 { "STYLEBUF", STYLEBUF.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
518 { "STYLESTRUCT", STYLESTRUCT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
519 { "SYSTEM_AUDIT_ACE", SYSTEM_AUDIT_ACE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
520 { "SYSTEM_INFO", SYSTEM_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
521 { "SYSTEM_INFO_U", SYSTEM_INFO_U.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
522 { "SYSTEM_POWER_STATUS", SYSTEM_POWER_STATUS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
523 { "SYSTEMTIME", SYSTEMTIME.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
524 { "tagMONITORINFO", tagMONITORINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
525 { "tagMONITORINFOEX", tagMONITORINFOEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
526 { "TAPE_ERASE", TAPE_ERASE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
527 { "TAPE_GET_DRIVE_PARAMETERS", TAPE_GET_DRIVE_PARAMETERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
528 { "TAPE_GET_MEDIA_PARAMETERS", TAPE_GET_MEDIA_PARAMETERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
529 { "TAPE_GET_POSITION", TAPE_GET_POSITION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
530 { "TAPE_PREPARE", TAPE_PREPARE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
531 { "TAPE_SET_DRIVE_PARAMETERS", TAPE_SET_DRIVE_PARAMETERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
532 { "TAPE_SET_MEDIA_PARAMETERS", TAPE_SET_MEDIA_PARAMETERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
533 { "TAPE_SET_POSITION", TAPE_SET_POSITION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
534 { "TAPE_WRITE_MARKS", TAPE_WRITE_MARKS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
535 { "TBADDBITMAP", TBADDBITMAP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
536 { "TBBUTTON", TBBUTTON.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
537 { "TBBUTTONINFOA", TBBUTTONINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
538 { "TBBUTTONINFOW", TBBUTTONINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
539 { "TBNOTIFY", TBNOTIFY.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
540 { "TBSAVEPARAMS", TBSAVEPARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
541 { "TC_HITTESTINFO", TC_HITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
542 { "TC_ITEM", TC_ITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
543 { "TCITEMA", TCITEMA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
544 { "TC_ITEMHEADER", TC_ITEMHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
545 { "TCITEMW", TCITEMW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
546 { "TC_KEYDOWN", TC_KEYDOWN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
547 { "TEXTMETRICA", TEXTMETRICA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
548 { "TEXTMETRICW", TEXTMETRICW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
549 { "TEXTRANGE", TEXTRANGE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
550 { "TF_DA_COLOR", TF_DA_COLOR.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
551 { "TF_DISPLAYATTRIBUTE", TF_DISPLAYATTRIBUTE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
552 { "TFINDTEXT", TFINDTEXT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
553 { "TIME_ZONE_INFORMATION", TIME_ZONE_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
554 { "TOGGLEKEYS", TOGGLEKEYS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
555 { "TOKEN_CONTROL", TOKEN_CONTROL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
556 { "TOKEN_DEFAULT_DACL", TOKEN_DEFAULT_DACL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
557 { "TOKEN_GROUPS", TOKEN_GROUPS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
558 { "TOKEN_OWNER", TOKEN_OWNER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
559 { "TOKEN_PRIMARY_GROUP", TOKEN_PRIMARY_GROUP.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
560 { "TOKEN_PRIVILEGES", TOKEN_PRIVILEGES.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
561 { "TOKEN_SOURCE", TOKEN_SOURCE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
562 { "TOKEN_STATISTICS", TOKEN_STATISTICS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
563 { "TOKEN_USER", TOKEN_USER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
564 { "TOOLINFOA", TOOLINFOA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
565 { "TOOLINFOW", TOOLINFOW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
566 { "TOOLTIPTEXTA", TOOLTIPTEXTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
567 { "TOOLTIPTEXTW", TOOLTIPTEXTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
568 { "TPAGESETUPDLG", TPAGESETUPDLG.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
569 { "TPMPARAMS", TPMPARAMS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
570 { "TRACKMOUSEEVENT", TRACKMOUSEEVENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
571 { "TRANSMIT_FILE_BUFFERS", TRANSMIT_FILE_BUFFERS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
572 { "TREEITEM", TREEITEM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
573 { "TRIVERTEX", TRIVERTEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
574 { "TSMALLPOINT", TSMALLPOINT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
575 { "TTHITTESTINFO", TTHITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
576 { "TTPOLYCURVE", TTPOLYCURVE.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
577 { "TTPOLYGONHEADER", TTPOLYGONHEADER.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
578 { "TVARIANT", TVARIANT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
579 { "TV_DISPINFO", TV_DISPINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
580 { "TVHITTESTINFO", TVHITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
581 { "TV_HITTESTINFO", TV_HITTESTINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
582 { "TVINSERTSTRUCTA", TVINSERTSTRUCTA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
583 { "TVINSERTSTRUCTW", TVINSERTSTRUCTW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
584 { "TVITEMA", TVITEMA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
585 { "TVITEMW", TVITEMW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
586 { "TV_KEYDOWN", TV_KEYDOWN.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
587 { "TVSORTCB", TVSORTCB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
588 { "TV_SORTCB", TV_SORTCB.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
589 { "TWAVEFORMATEX", TWAVEFORMATEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
590 { "UDACCEL", UDACCEL.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
591 { "UNIVERSAL_NAME_INFO", UNIVERSAL_NAME_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
592 { "UNLOAD_DLL_DEBUG_INFO", UNLOAD_DLL_DEBUG_INFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
593 { "USER_INFO_0", USER_INFO_0.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
594 { "USER_INFO_2", USER_INFO_2.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
595 { "USER_INFO_3", USER_INFO_3.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
596 { "USEROBJECTFLAGS", USEROBJECTFLAGS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
597 { "VALENT", VALENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
598 { "VA_LIST", VA_LIST.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
599 { "VERIFY_INFORMATION", VERIFY_INFORMATION.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
600 { "VS_FIXEDFILEINFO", VS_FIXEDFILEINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
601 { "WIN32_FILE_ATTRIBUTE_DATA", WIN32_FILE_ATTRIBUTE_DATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
602 { "WIN32_FIND_DATA", WIN32_FIND_DATA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
603 { "WIN32_FIND_DATAW", WIN32_FIND_DATAW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
604 { "WIN32_STREAM_ID", WIN32_STREAM_ID.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
605 { "WINDOW_BUFFER_SIZE_RECORD", WINDOW_BUFFER_SIZE_RECORD.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
606 { "WINDOWINFO", WINDOWINFO.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
607 { "WINDOWPLACEMENT", WINDOWPLACEMENT.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
608 { "WINDOWPOS", WINDOWPOS.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
609 { "WNDCLASSA", WNDCLASSA.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
610 { "WNDCLASSEX", WNDCLASSEX.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
611 { "WNDCLASSW", WNDCLASSW.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
612 { "XFORM", XFORM.sizeof }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
613 ];
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
614
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
615 int main( char[][] args ){
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
616 foreach( v; size_values ){
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
617 printf( "%.*s\t%d\n", v.name, v.size );
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
618 }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
619 return 0;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
620 }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
621
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
622
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
623