forked from AllenDang/w32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedef.go
406 lines (369 loc) · 8.07 KB
/
typedef.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
// Copyright 2010 The W32 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package w32
import (
"unsafe"
)
type (
BOOL int
ATOM uint16
HANDLE uintptr
HINSTANCE HANDLE
HACCEL HANDLE
HCURSOR HANDLE
HDWP HANDLE
HICON HANDLE
HMENU HANDLE
HWND HANDLE
HBRUSH HANDLE
HRESULT uint
HFONT HANDLE
HDC HANDLE
HGDIOBJ HANDLE
HDROP HANDLE
HENHMETAFILE HANDLE
HBITMAP HANDLE
HPEN HANDLE
HKEY HANDLE
HIMAGELIST HANDLE
HGLOBAL HANDLE
HMODULE HANDLE
HRSRC HANDLE
COLORREF uint
)
type POINT struct {
X, Y int
}
type RECT struct {
Left, Top, Right, Bottom int
}
type WNDCLASSEX struct {
Size uint
Style uint
WndProc uintptr
ClsExtra int
WndExtra int
Instance HINSTANCE
Icon HICON
Cursor HCURSOR
Background HBRUSH
MenuName *uint16
ClassName *uint16
IconSm HICON
}
type MSG struct {
Hwnd HWND
Message uint
WParam uintptr
LParam uintptr
Time uint
Pt POINT
}
type LOGFONT struct {
Height int
Width int
Escapement int
Orientation int
Weight int
Italic byte
Underline byte
StrikeOut byte
CharSet byte
OutPrecision byte
ClipPrecision byte
Quality byte
PitchAndFamily byte
FaceName [LF_FACESIZE]uint16
}
type OPENFILENAME struct {
StructSize uint
Owner HWND
Instance HINSTANCE
Filter *uint16
CustomFilter *uint16
MaxCustomFilter uint
FilterIndex uint
File *uint16
MaxFile uint
FileTitle *uint16
MaxFileTitle uint
InitialDir *uint16
Title *uint16
Flags uint
FileOffset uint16
FileExtension uint16
DefExt *uint16
CustData uintptr
FnHook uintptr
TemplateName *uint16
PvReserved unsafe.Pointer
DwReserved uint
FlagsEx uint
}
type BROWSEINFO struct {
Owner HWND
Root *uint16
DisplayName *uint16
Title *uint16
Flags uint
CallbackFunc uintptr
LParam uintptr
Image int
}
type GUID struct {
Data1 uint
Data2 uint16
Data3 uint16
Data4 [8]byte
}
type VARIANT struct {
VT uint16 // 2
WReserved1 uint16 // 4
WReserved2 uint16 // 6
WReserved3 uint16 // 8
Val int64 // 16
}
type DISPPARAMS struct {
Rgvarg uintptr
RgdispidNamedArgs uintptr
CArgs uint
CNamedArgs uint
}
type EXCEPINFO struct {
WCode uint16
WReserved uint16
BstrSource *uint16
BstrDescription *uint16
BstrHelpFile *uint16
DwHelpContext uint
PvReserved uintptr
PfnDeferredFillIn uintptr
Scode int
}
type LOGBRUSH struct {
LbStyle uint
LbColor COLORREF
LbHatch uintptr
}
type DEVMODE struct {
DmDeviceName [CCHDEVICENAME]uint16
DmSpecVersion uint16
DmDriverVersion uint16
DmSize uint16
DmDriverExtra uint16
DmFields uint
DmOrientation int16
DmPaperSize int16
DmPaperLength int16
DmPaperWidth int16
DmScale int16
DmCopies int16
DmDefaultSource int16
DmPrintQuality int16
DmColor int16
DmDuplex int16
DmYResolution int16
DmTTOption int16
DmCollate int16
DmFormName [CCHFORMNAME]uint16
DmLogPixels uint16
DmBitsPerPel uint
DmPelsWidth uint
DmPelsHeight uint
DmDisplayFlags uint
DmDisplayFrequency uint
DmICMMethod uint
DmICMIntent uint
DmMediaType uint
DmDitherType uint
DmReserved1 uint
DmReserved2 uint
DmPanningWidth uint
DmPanningHeight uint
}
type BITMAPINFOHEADER struct {
BiSize uint
BiWidth int
BiHeight int
BiPlanes uint16
BiBitCount uint16
BiCompression uint
BiSizeImage uint
BiXPelsPerMeter int
BiYPelsPerMeter int
BiClrUsed uint
BiClrImportant uint
}
type RGBQUAD struct {
RgbBlue byte
RgbGreen byte
RgbRed byte
RgbReserved byte
}
type BITMAPINFO struct {
BmiHeader BITMAPINFOHEADER
BmiColors *RGBQUAD
}
type BITMAP struct {
BmType int32
BmWidth int32
BmHeight int32
BmWidthBytes int32
BmPlanes uint16
BmBitsPixel uint16
BmBits unsafe.Pointer
}
type DIBSECTION struct {
DsBm BITMAP
DsBmih BITMAPINFOHEADER
DsBitfields [3]uint32
DshSection HANDLE
DsOffset uint32
}
type ENHMETAHEADER struct {
IType uint
NSize uint
RclBounds RECT
RclFrame RECT
DSignature uint
NVersion uint
NBytes uint
NRecords uint
NHandles uint16
SReserved uint16
NDescription uint
OffDescription uint
NPalEntries uint
SzlDevice SIZE
SzlMillimeters SIZE
CbPixelFormat uint
OffPixelFormat uint
BOpenGL uint
SzlMicrometers SIZE
}
type SIZE struct {
CX, CY int
}
type TEXTMETRIC struct {
TmHeight int
TmAscent int
TmDescent int
TmInternalLeading int
TmExternalLeading int
TmAveCharWidth int
TmMaxCharWidth int
TmWeight int
TmOverhang int
TmDigitizedAspectX int
TmDigitizedAspectY int
TmFirstChar uint16
TmLastChar uint16
TmDefaultChar uint16
TmBreakChar uint16
TmItalic byte
TmUnderlined byte
TmStruckOut byte
TmPitchAndFamily byte
TmCharSet byte
}
type DOCINFO struct {
CbSize int
LpszDocName *uint16
LpszOutput *uint16
LpszDatatype *uint16
FwType uint
}
type NMHDR struct {
HwndFrom HWND
IdFrom uintptr
Code uint
}
type LVCOLUMN struct {
Mask uint
Fmt int
Cx int
PszText *uint16
CchTextMax int
ISubItem int
IImage int
IOrder int
}
type LVITEM struct {
Mask uint
IItem int
ISubItem int
State uint
StateMask uint
PszText *uint16
CchTextMax int
IImage int
LParam uintptr
IIndent int
IGroupId int
CColumns uint
PuColumns uint
}
type LVHITTESTINFO struct {
Pt POINT
Flags uint
IItem int
ISubItem int
IGroup int
}
type NMITEMACTIVATE struct {
Hdr NMHDR
IItem int
ISubItem int
UNewState uint
UOldState uint
UChanged uint
PtAction POINT
LParam uintptr
UKeyFlags uint
}
type NMLISTVIEW struct {
Hdr NMHDR
IItem int
ISubItem int
UNewState uint
UOldState uint
UChanged uint
PtAction POINT
LParam uintptr
}
type NMLVDISPINFO struct {
Hdr NMHDR
Item LVITEM
}
type INITCOMMONCONTROLSEX struct {
DwSize uint
DwICC uint
}
type TOOLINFO struct {
CbSize uint
UFlags uint
Hwnd HWND
UId uintptr
Rect RECT
Hinst HINSTANCE
LpszText *uint16
LParam uintptr
LpReserved unsafe.Pointer
}
type TRACKMOUSEEVENT struct {
CbSize uint
DwFlags uint
HwndTrack HWND
DwHoverTime uint
}
type GdiplusStartupInput struct {
GdiplusVersion uint32
DebugEventCallback uintptr
SuppressBackgroundThread BOOL
SuppressExternalCodecs BOOL
}
type GdiplusStartupOutput struct {
NotificationHook uintptr
NotificationUnhook uintptr
}