-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWindowsConstants.cs
1008 lines (1007 loc) · 47.2 KB
/
WindowsConstants.cs
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Handlers {
public class WindowsConstants {
public const int WM_NULL = 0;
public const int WM_CREATE = 1;
public const int WM_DESTROY = 2;
public const int WM_MOVE = 3;
public const int WM_SIZE = 5;
public const int WM_ACTIVATE = 6;
public const int WM_SETFOCUS = 7;
public const int WM_KILLFOCUS = 8;
public const int WM_ENABLE = 10;
public const int WM_SETREDRAW = 11;
public const int WM_SETTEXT = 12;
public const int WM_GETTEXT = 13;
public const int WM_GETTEXTLENGTH = 14;
public const int WM_PAINT = 15;
public const int WM_CLOSE = 16;
public const int WM_QUERYENDSESSION = 17;
public const int WM_QUIT = 18;
public const int WM_QUERYOPEN = 19;
public const int WM_ERASEBKGND = 20;
public const int WM_SYSCOLORCHANGE = 21;
public const int WM_ENDSESSION = 22;
public const int WM_SHOWWINDOW = 24;
public const int WM_CTLCOLOR = 25;
public const int WM_WININICHANGE = 26;
public const int WM_DEVMODECHANGE = 27;
public const int WM_ACTIVATEAPP = 28;
public const int WM_FONTCHANGE = 29;
public const int WM_TIMECHANGE = 30;
public const int WM_CANCELMODE = 31;
public const int WM_SETCURSOR = 32;
public const int WM_MOUSEACTIVATE = 33;
public const int WM_CHILDACTIVATE = 34;
public const int WM_QUEUESYNC = 35;
public const int WM_GETMINMAXINFO = 36;
public const int WM_PAINTICON = 38;
public const int WM_ICONERASEBKGND = 39;
public const int WM_NEXTDLGCTL = 40;
public const int WM_SPOOLERSTATUS = 42;
public const int WM_DRAWITEM = 43;
public const int WM_MEASUREITEM = 44;
public const int WM_DELETEITEM = 45;
public const int WM_VKEYTOITEM = 46;
public const int WM_CHARTOITEM = 47;
public const int WM_SETFONT = 48;
public const int WM_GETFONT = 49;
public const int WM_SETHOTKEY = 50;
public const int WM_GETHOTKEY = 51;
public const int WM_QUERYDRAGICON = 55;
public const int WM_COMPAREITEM = 57;
public const int WM_GETOBJECT = 61;
public const int WM_COMPACTING = 65;
public const int WM_COMMNOTIFY = 68;
public const int WM_WINDOWPOSCHANGING = 70;
public const int WM_WINDOWPOSCHANGED = 71;
public const int WM_POWER = 72;
public const int WM_COPYGLOBALDATA = 73;
public const int WM_COPYDATA = 74;
public const int WM_CANCELJOURNAL = 75;
public const int WM_NOTIFY = 78;
public const int WM_INPUTLANGCHANGEREQUEST = 80;
public const int WM_INPUTLANGCHANGE = 81;
public const int WM_TCARD = 82;
public const int WM_HELP = 83;
public const int WM_USERCHANGED = 84;
public const int WM_NOTIFYFORMAT = 85;
public const int WM_CONTEXTMENU = 123;
public const int WM_STYLECHANGING = 124;
public const int WM_STYLECHANGED = 125;
public const int WM_DISPLAYCHANGE = 126;
public const int WM_GETICON = 127;
public const int WM_SETICON = 128;
public const int WM_NCCREATE = 129;
public const int WM_NCDESTROY = 130;
public const int WM_NCCALCSIZE = 131;
public const int WM_NCHITTEST = 132;
public const int WM_NCPAINT = 133;
public const int WM_NCACTIVATE = 134;
public const int WM_GETDLGCODE = 135;
public const int WM_SYNCPAINT = 136;
public const int WM_NCMOUSEMOVE = 160;
public const int WM_NCLBUTTONDOWN = 161;
public const int WM_NCLBUTTONUP = 162;
public const int WM_NCLBUTTONDBLCLK = 163;
public const int WM_NCRBUTTONDOWN = 164;
public const int WM_NCRBUTTONUP = 165;
public const int WM_NCRBUTTONDBLCLK = 166;
public const int WM_NCMBUTTONDOWN = 167;
public const int WM_NCMBUTTONUP = 168;
public const int WM_NCMBUTTONDBLCLK = 169;
public const int WM_NCXBUTTONDOWN = 171;
public const int WM_NCXBUTTONUP = 172;
public const int WM_NCXBUTTONDBLCLK = 173;
public const int EM_GETSEL = 176;
public const int EM_SETSEL = 177;
public const int EM_GETRECT = 178;
public const int EM_SETRECT = 179;
public const int EM_SETRECTNP = 180;
public const int EM_SCROLL = 181;
public const int EM_LINESCROLL = 182;
public const int EM_SCROLLCARET = 183;
public const int EM_GETMODIFY = 185;
public const int EM_SETMODIFY = 187;
public const int EM_GETLINECOUNT = 188;
public const int EM_LINEINDEX = 189;
public const int EM_SETHANDLE = 190;
public const int EM_GETHANDLE = 191;
public const int EM_GETTHUMB = 192;
public const int EM_LINELENGTH = 193;
public const int EM_REPLACESEL = 194;
public const int EM_SETFONT = 195;
public const int EM_GETLINE = 196;
public const int EM_LIMITTEXT = 197;
public const int EM_SETLIMITTEXT = 197;
public const int EM_CANUNDO = 198;
public const int EM_UNDO = 199;
public const int EM_FMTLINES = 200;
public const int EM_LINEFROMCHAR = 201;
public const int EM_SETWORDBREAK = 202;
public const int EM_SETTABSTOPS = 203;
public const int EM_SETPASSWORDCHAR = 204;
public const int EM_EMPTYUNDOBUFFER = 205;
public const int EM_GETFIRSTVISIBLELINE = 206;
public const int EM_SETREADONLY = 207;
public const int EM_SETWORDBREAKPROC = 209;
public const int EM_GETWORDBREAKPROC = 209;
public const int EM_GETPASSWORDCHAR = 210;
public const int EM_SETMARGINS = 211;
public const int EM_GETMARGINS = 212;
public const int EM_GETLIMITTEXT = 213;
public const int EM_POSFROMCHAR = 214;
public const int EM_CHARFROMPOS = 215;
public const int EM_SETIMESTATUS = 216;
public const int EM_GETIMESTATUS = 217;
public const int SBM_SETPOS = 224;
public const int SBM_GETPOS = 225;
public const int SBM_SETRANGE = 226;
public const int SBM_GETRANGE = 227;
public const int SBM_ENABLE_ARROWS = 228;
public const int SBM_SETRANGEREDRAW = 230;
public const int SBM_SETSCROLLINFO = 233;
public const int SBM_GETSCROLLINFO = 234;
public const int SBM_GETSCROLLBARINFO = 235;
public const int BM_GETCHECK = 240;
public const int BM_SETCHECK = 241;
public const int BM_GETSTATE = 242;
public const int BM_SETSTATE = 243;
public const int BM_SETSTYLE = 244;
public const int BM_CLICK = 245;
public const int BM_GETIMAGE = 246;
public const int BM_SETIMAGE = 247;
public const int BM_SETDONTCLICK = 248;
public const int WM_INPUT = 255;
public const int WM_KEYDOWN = 256;
public const int WM_KEYFIRST = 256;
public const int WM_KEYUP = 257;
public const int WM_CHAR = 258;
public const int WM_DEADCHAR = 259;
public const int WM_SYSKEYDOWN = 260;
public const int WM_SYSKEYUP = 261;
public const int WM_SYSCHAR = 262;
public const int WM_SYSDEADCHAR = 263;
public const int WM_UNICHAR = 265 ;
public const int WM_WNT_CONVERTREQUESTEX = 265;
public const int WM_CONVERTREQUEST = 266;
public const int WM_CONVERTRESULT = 267;
public const int WM_INTERIM = 268;
public const int WM_IME_STARTCOMPOSITION = 269;
public const int WM_IME_ENDCOMPOSITION = 270;
public const int WM_IME_COMPOSITION = 271;
public const int WM_IME_KEYLAST = 271;
public const int WM_INITDIALOG = 272;
public const int WM_COMMAND = 273;
public const int WM_SYSCOMMAND = 274;
public const int WM_TIMER = 275;
public const int WM_HSCROLL = 276;
public const int WM_VSCROLL = 277;
public const int WM_INITMENU = 278;
public const int WM_INITMENUPOPUP = 279;
public const int WM_SYSTIMER = 280;
public const int WM_MENUSELECT = 287;
public const int WM_MENUCHAR = 288;
public const int WM_ENTERIDLE = 289;
public const int WM_MENURBUTTONUP = 290;
public const int WM_MENUDRAG = 291;
public const int WM_MENUGETOBJECT = 292;
public const int WM_UNINITMENUPOPUP = 293;
public const int WM_MENUCOMMAND = 294;
public const int WM_CHANGEUISTATE = 295;
public const int WM_UPDATEUISTATE = 296;
public const int WM_QUERYUISTATE = 297;
public const int WM_CTLCOLORMSGBOX = 306;
public const int WM_CTLCOLOREDIT = 307;
public const int WM_CTLCOLORLISTBOX = 308;
public const int WM_CTLCOLORBTN = 309;
public const int WM_CTLCOLORDLG = 310;
public const int WM_CTLCOLORSCROLLBAR = 311;
public const int WM_CTLCOLORSTATIC = 312;
public const int WM_MOUSEFIRST = 512;
public const int WM_MOUSEMOVE = 512;
public const int WM_LBUTTONDOWN = 513;
public const int WM_LBUTTONUP = 514;
public const int WM_LBUTTONDBLCLK = 515;
public const int WM_RBUTTONDOWN = 516;
public const int WM_RBUTTONUP = 517;
public const int WM_RBUTTONDBLCLK = 518;
public const int WM_MBUTTONDOWN = 519;
public const int WM_MBUTTONUP = 520;
public const int WM_MBUTTONDBLCLK = 521;
public const int WM_MOUSELAST = 521;
public const int WM_MOUSEWHEEL = 522;
public const int WM_XBUTTONDOWN = 523;
public const int WM_XBUTTONUP = 524;
public const int WM_XBUTTONDBLCLK = 525;
public const int WM_MOUSEHWHEEL = 526;
public const int WM_PARENTNOTIFY = 528;
public const int WM_ENTERMENULOOP = 529;
public const int WM_EXITMENULOOP = 530;
public const int WM_NEXTMENU = 531;
public const int WM_SIZING = 532;
public const int WM_CAPTURECHANGED = 533;
public const int WM_MOVING = 534;
public const int WM_POWERBROADCAST = 536;
public const int WM_DEVICECHANGE = 537;
public const int WM_MDICREATE = 544;
public const int WM_MDIDESTROY = 545;
public const int WM_MDIACTIVATE = 546;
public const int WM_MDIRESTORE = 547;
public const int WM_MDINEXT = 548;
public const int WM_MDIMAXIMIZE = 549;
public const int WM_MDITILE = 550;
public const int WM_MDICASCADE = 551;
public const int WM_MDIICONARRANGE = 552;
public const int WM_MDIGETACTIVE = 553;
public const int WM_MDISETMENU = 560;
public const int WM_ENTERSIZEMOVE = 561;
public const int WM_EXITSIZEMOVE = 562;
public const int WM_DROPFILES = 563;
public const int WM_MDIREFRESHMENU = 564;
public const int WM_IME_REPORT = 640;
public const int WM_IME_SETCONTEXT = 641;
public const int WM_IME_NOTIFY = 642;
public const int WM_IME_CONTROL = 643;
public const int WM_IME_COMPOSITIONFULL = 644;
public const int WM_IME_SELECT = 645;
public const int WM_IME_CHAR = 646;
public const int WM_IME_REQUEST = 648;
public const int WM_IMEKEYDOWN = 656;
public const int WM_IME_KEYDOWN = 656;
public const int WM_IMEKEYUP = 657;
public const int WM_IME_KEYUP = 657;
public const int WM_NCMOUSEHOVER = 672;
public const int WM_MOUSEHOVER = 673;
public const int WM_NCMOUSELEAVE = 674;
public const int WM_MOUSELEAVE = 675;
public const int WM_CUT = 768;
public const int WM_COPY = 769;
public const int WM_PASTE = 770;
public const int WM_CLEAR = 771;
public const int WM_UNDO = 772;
public const int WM_RENDERFORMAT = 773;
public const int WM_RENDERALLFORMATS = 774;
public const int WM_DESTROYCLIPBOARD = 775;
public const int WM_DRAWCLIPBOARD = 776;
public const int WM_PAINTCLIPBOARD = 777;
public const int WM_VSCROLLCLIPBOARD = 778;
public const int WM_SIZECLIPBOARD = 779;
public const int WM_ASKCBFORMATNAME = 780;
public const int WM_CHANGECBCHAIN = 781;
public const int WM_HSCROLLCLIPBOARD = 782;
public const int WM_QUERYNEWPALETTE = 783;
public const int WM_PALETTEISCHANGING = 784;
public const int WM_PALETTECHANGED = 785;
public const int WM_HOTKEY = 786;
public const int WM_PRINT = 791;
public const int WM_PRINTCLIENT = 792;
public const int WM_APPCOMMAND = 793;
public const int WM_HANDHELDFIRST = 856;
public const int WM_HANDHELDLAST = 863;
public const int WM_AFXFIRST = 864;
public const int WM_AFXLAST = 895;
public const int WM_PENWINFIRST = 896;
public const int WM_RCRESULT = 897;
public const int WM_HOOKRCRESULT = 898;
public const int WM_GLOBALRCCHANGE = 899;
public const int WM_PENMISCINFO = 899;
public const int WM_SKB = 900;
public const int WM_HEDITCTL = 901;
public const int WM_PENCTL = 901;
public const int WM_PENMISC = 902;
public const int WM_CTLINIT = 903;
public const int WM_PENEVENT = 904;
public const int WM_PENWINLAST = 911;
public const int DDM_SETFMT = 1024;
public const int DM_GETDEFID = 1024;
public const int NIN_SELECT = 1024;
public const int TBM_GETPOS = 1024;
public const int WM_PSD_PAGESETUPDLG = 1024;
public const int WM_USER = 1024;
public const int CBEM_INSERTITEMA = 1025;
public const int DDM_DRAW = 1025;
public const int DM_SETDEFID = 1025;
public const int HKM_SETHOTKEY = 1025;
public const int PBM_SETRANGE = 1025;
public const int RB_INSERTBANDA = 1025;
public const int SB_SETTEXTA = 1025;
public const int TB_ENABLEBUTTON = 1025;
public const int TBM_GETRANGEMIN = 1025;
public const int TTM_ACTIVATE = 1025;
public const int WM_CHOOSEFONT_GETLOGFONT = 1025;
public const int WM_PSD_FULLPAGERECT = 1025;
public const int CBEM_SETIMAGELIST = 1026;
public const int DDM_CLOSE = 1026;
public const int DM_REPOSITION = 1026;
public const int HKM_GETHOTKEY = 1026;
public const int PBM_SETPOS = 1026;
public const int RB_DELETEBAND = 1026;
public const int SB_GETTEXTA = 1026;
public const int TB_CHECKBUTTON = 1026;
public const int TBM_GETRANGEMAX = 1026;
public const int WM_PSD_MINMARGINRECT = 1026;
public const int CBEM_GETIMAGELIST = 1027;
public const int DDM_BEGIN = 1027;
public const int HKM_SETRULES = 1027;
public const int PBM_DELTAPOS = 1027;
public const int RB_GETBARINFO = 1027;
public const int SB_GETTEXTLENGTHA = 1027;
public const int TBM_GETTIC = 1027;
public const int TB_PRESSBUTTON = 1027;
public const int TTM_SETDELAYTIME = 1027;
public const int WM_PSD_MARGINRECT = 1027;
public const int CBEM_GETITEMA = 1028;
public const int DDM_END = 1028;
public const int PBM_SETSTEP = 1028;
public const int RB_SETBARINFO = 1028;
public const int SB_SETPARTS = 1028;
public const int TB_HIDEBUTTON = 1028;
public const int TBM_SETTIC = 1028;
public const int TTM_ADDTOOLA = 1028;
public const int WM_PSD_GREEKTEXTRECT = 1028;
public const int CBEM_SETITEMA = 1029;
public const int PBM_STEPIT = 1029;
public const int TB_INDETERMINATE = 1029;
public const int TBM_SETPOS = 1029;
public const int TTM_DELTOOLA = 1029;
public const int WM_PSD_ENVSTAMPRECT = 1029;
public const int CBEM_GETCOMBOCONTROL = 1030;
public const int PBM_SETRANGE32 = 1030;
public const int RB_SETBANDINFOA = 1030;
public const int SB_GETPARTS = 1030;
public const int TB_MARKBUTTON = 1030;
public const int TBM_SETRANGE = 1030;
public const int TTM_NEWTOOLRECTA = 1030;
public const int WM_PSD_YAFULLPAGERECT = 1030;
public const int CBEM_GETEDITCONTROL = 1031;
public const int PBM_GETRANGE = 1031;
public const int RB_SETPARENT = 1031;
public const int SB_GETBORDERS = 1031;
public const int TBM_SETRANGEMIN = 1031;
public const int TTM_RELAYEVENT = 1031;
public const int CBEM_SETEXSTYLE = 1032;
public const int PBM_GETPOS = 1032;
public const int RB_HITTEST = 1032;
public const int SB_SETMINHEIGHT = 1032;
public const int TBM_SETRANGEMAX = 1032;
public const int TTM_GETTOOLINFOA = 1032;
public const int CBEM_GETEXSTYLE = 1033;
public const int CBEM_GETEXTENDEDSTYLE = 1033;
public const int PBM_SETBARCOLOR = 1033;
public const int RB_GETRECT = 1033;
public const int SB_SIMPLE = 1033;
public const int TB_ISBUTTONENABLED = 1033;
public const int TBM_CLEARTICS = 1033;
public const int TTM_SETTOOLINFOA = 1033;
public const int CBEM_HASEDITCHANGED = 1034;
public const int RB_INSERTBANDW = 1034;
public const int SB_GETRECT = 1034;
public const int TB_ISBUTTONCHECKED = 1034;
public const int TBM_SETSEL = 1034;
public const int TTM_HITTESTA = 1034;
public const int WIZ_QUERYNUMPAGES = 1034;
public const int CBEM_INSERTITEMW = 1035;
public const int RB_SETBANDINFOW = 1035;
public const int SB_SETTEXTW = 1035;
public const int TB_ISBUTTONPRESSED = 1035;
public const int TBM_SETSELSTART = 1035;
public const int TTM_GETTEXTA = 1035;
public const int WIZ_NEXT = 1035;
public const int CBEM_SETITEMW = 1036;
public const int RB_GETBANDCOUNT = 1036;
public const int SB_GETTEXTLENGTHW = 1036;
public const int TB_ISBUTTONHIDDEN = 1036;
public const int TBM_SETSELEND = 1036;
public const int TTM_UPDATETIPTEXTA = 1036;
public const int WIZ_PREV = 1036;
public const int CBEM_GETITEMW = 1037;
public const int RB_GETROWCOUNT = 1037;
public const int SB_GETTEXTW = 1037;
public const int TB_ISBUTTONINDETERMINATE = 1037;
public const int TTM_GETTOOLCOUNT = 1037;
public const int CBEM_SETEXTENDEDSTYLE = 1038;
public const int RB_GETROWHEIGHT = 1038;
public const int SB_ISSIMPLE = 1038;
public const int TB_ISBUTTONHIGHLIGHTED = 1038;
public const int TBM_GETPTICS = 1038;
public const int TTM_ENUMTOOLSA = 1038;
public const int SB_SETICON = 1039;
public const int TBM_GETTICPOS = 1039;
public const int TTM_GETCURRENTTOOLA = 1039;
public const int RB_IDTOINDEX = 1040;
public const int SB_SETTIPTEXTA = 1040;
public const int TBM_GETNUMTICS = 1040;
public const int TTM_WINDOWFROMPOINT = 1040;
public const int RB_GETTOOLTIPS = 1041;
public const int SB_SETTIPTEXTW = 1041;
public const int TBM_GETSELSTART = 1041;
public const int TB_SETSTATE = 1041;
public const int TTM_TRACKACTIVATE = 1041;
public const int RB_SETTOOLTIPS = 1042;
public const int SB_GETTIPTEXTA = 1042;
public const int TB_GETSTATE = 1042;
public const int TBM_GETSELEND = 1042;
public const int TTM_TRACKPOSITION = 1042;
public const int RB_SETBKCOLOR = 1043;
public const int SB_GETTIPTEXTW = 1043;
public const int TB_ADDBITMAP = 1043;
public const int TBM_CLEARSEL = 1043;
public const int TTM_SETTIPBKCOLOR = 1043;
public const int RB_GETBKCOLOR = 1044;
public const int SB_GETICON = 1044;
public const int TB_ADDBUTTONSA = 1044;
public const int TBM_SETTICFREQ = 1044;
public const int TTM_SETTIPTEXTCOLOR = 1044;
public const int RB_SETTEXTCOLOR = 1045;
public const int TB_INSERTBUTTONA = 1045;
public const int TBM_SETPAGESIZE = 1045;
public const int TTM_GETDELAYTIME = 1045;
public const int RB_GETTEXTCOLOR = 1046;
public const int TB_DELETEBUTTON = 1046;
public const int TBM_GETPAGESIZE = 1046;
public const int TTM_GETTIPBKCOLOR = 1046;
public const int RB_SIZETORECT = 1047;
public const int TB_GETBUTTON = 1047;
public const int TBM_SETLINESIZE = 1047;
public const int TTM_GETTIPTEXTCOLOR = 1047;
public const int RB_BEGINDRAG = 1048;
public const int TB_BUTTONCOUNT = 1048;
public const int TBM_GETLINESIZE = 1048;
public const int TTM_SETMAXTIPWIDTH = 1048;
public const int RB_ENDDRAG = 1049;
public const int TB_COMMANDTOINDEX = 1049;
public const int TBM_GETTHUMBRECT = 1049;
public const int TTM_GETMAXTIPWIDTH = 1049;
public const int RB_DRAGMOVE = 1050;
public const int TBM_GETCHANNELRECT = 1050;
public const int TB_SAVERESTOREA = 1050;
public const int TTM_SETMARGIN = 1050;
public const int RB_GETBARHEIGHT = 1051;
public const int TB_CUSTOMIZE = 1051;
public const int TBM_SETTHUMBLENGTH = 1051;
public const int TTM_GETMARGIN = 1051;
public const int RB_GETBANDINFOW = 1052;
public const int TB_ADDSTRINGA = 1052;
public const int TBM_GETTHUMBLENGTH = 1052;
public const int TTM_POP = 1052;
public const int RB_GETBANDINFOA = 1053;
public const int TB_GETITEMRECT = 1053;
public const int TBM_SETTOOLTIPS = 1053;
public const int TTM_UPDATE = 1053;
public const int RB_MINIMIZEBAND = 1054;
public const int TB_BUTTONSTRUCTSIZE = 1054;
public const int TBM_GETTOOLTIPS = 1054;
public const int TTM_GETBUBBLESIZE = 1054;
public const int RB_MAXIMIZEBAND = 1055;
public const int TBM_SETTIPSIDE = 1055;
public const int TB_SETBUTTONSIZE = 1055;
public const int TTM_ADJUSTRECT = 1055;
public const int TBM_SETBUDDY = 1056;
public const int TB_SETBITMAPSIZE = 1056;
public const int TTM_SETTITLEA = 1056;
public const int MSG_FTS_JUMP_VA = 1057;
public const int TB_AUTOSIZE = 1057;
public const int TBM_GETBUDDY = 1057;
public const int TTM_SETTITLEW = 1057;
public const int RB_GETBANDBORDERS = 1058;
public const int MSG_FTS_JUMP_QWORD = 1059;
public const int RB_SHOWBAND = 1059;
public const int TB_GETTOOLTIPS = 1059;
public const int MSG_REINDEX_REQUEST = 1060;
public const int TB_SETTOOLTIPS = 1060;
public const int MSG_FTS_WHERE_IS_IT = 1061;
public const int RB_SETPALETTE = 1061;
public const int TB_SETPARENT = 1061;
public const int RB_GETPALETTE = 1062;
public const int RB_MOVEBAND = 1063;
public const int TB_SETROWS = 1063;
public const int TB_GETROWS = 1064;
public const int TB_GETBITMAPFLAGS = 1065;
public const int TB_SETCMDID = 1066;
public const int RB_PUSHCHEVRON = 1067;
public const int TB_CHANGEBITMAP = 1067;
public const int TB_GETBITMAP = 1068;
public const int MSG_GET_DEFFONT = 1069;
public const int TB_GETBUTTONTEXTA = 1069;
public const int TB_REPLACEBITMAP = 1070;
public const int TB_SETINDENT = 1071;
public const int TB_SETIMAGELIST = 1072;
public const int TB_GETIMAGELIST = 1073;
public const int TB_LOADIMAGES = 1074;
public const int EM_CANPASTE = 1074;
public const int TTM_ADDTOOLW = 1074;
public const int EM_DISPLAYBAND = 1075;
public const int TB_GETRECT = 1075;
public const int TTM_DELTOOLW = 1075;
public const int EM_EXGETSEL = 1076;
public const int TB_SETHOTIMAGELIST = 1076;
public const int TTM_NEWTOOLRECTW = 1076;
public const int EM_EXLIMITTEXT = 1077;
public const int TB_GETHOTIMAGELIST = 1077;
public const int TTM_GETTOOLINFOW = 1077;
public const int EM_EXLINEFROMCHAR = 1078;
public const int TB_SETDISABLEDIMAGELIST = 1078;
public const int TTM_SETTOOLINFOW = 1078;
public const int EM_EXSETSEL = 1079;
public const int TB_GETDISABLEDIMAGELIST = 1079;
public const int TTM_HITTESTW = 1079;
public const int EM_FINDTEXT = 1080;
public const int TB_SETSTYLE = 1080;
public const int TTM_GETTEXTW = 1080;
public const int EM_FORMATRANGE = 1081;
public const int TB_GETSTYLE = 1081;
public const int TTM_UPDATETIPTEXTW = 1081;
public const int EM_GETCHARFORMAT = 1082;
public const int TB_GETBUTTONSIZE = 1082;
public const int TTM_ENUMTOOLSW = 1082;
public const int EM_GETEVENTMASK = 1083;
public const int TB_SETBUTTONWIDTH = 1083;
public const int TTM_GETCURRENTTOOLW = 1083;
public const int EM_GETOLEINTERFACE = 1084;
public const int TB_SETMAXTEXTROWS = 1084;
public const int EM_GETPARAFORMAT = 1085;
public const int TB_GETTEXTROWS = 1085;
public const int EM_GETSELTEXT = 1086;
public const int TB_GETOBJECT = 1086;
public const int EM_HIDESELECTION = 1087;
public const int TB_GETBUTTONINFOW = 1087;
public const int EM_PASTESPECIAL = 1088;
public const int TB_SETBUTTONINFOW = 1088;
public const int EM_REQUESTRESIZE = 1089;
public const int TB_GETBUTTONINFOA = 1089;
public const int EM_SELECTIONTYPE = 1090;
public const int TB_SETBUTTONINFOA = 1090;
public const int EM_SETBKGNDCOLOR = 1091;
public const int TB_INSERTBUTTONW = 1091;
public const int EM_SETCHARFORMAT = 1092;
public const int TB_ADDBUTTONSW = 1092;
public const int EM_SETEVENTMASK = 1093;
public const int TB_HITTEST = 1093;
public const int EM_SETOLECALLBACK = 1094;
public const int TB_SETDRAWTEXTFLAGS = 1094;
public const int EM_SETPARAFORMAT = 1095;
public const int TB_GETHOTITEM = 1095;
public const int EM_SETTARGETDEVICE = 1096;
public const int TB_SETHOTITEM = 1096;
public const int EM_STREAMIN = 1097;
public const int TB_SETANCHORHIGHLIGHT = 1097;
public const int EM_STREAMOUT = 1098;
public const int TB_GETANCHORHIGHLIGHT = 1098;
public const int EM_GETTEXTRANGE = 1099;
public const int TB_GETBUTTONTEXTW = 1099;
public const int EM_FINDWORDBREAK = 1100;
public const int TB_SAVERESTOREW = 1100;
public const int EM_SETOPTIONS = 1101;
public const int TB_ADDSTRINGW = 1101;
public const int EM_GETOPTIONS = 1102;
public const int TB_MAPACCELERATORA = 1102;
public const int EM_FINDTEXTEX = 1103;
public const int TB_GETINSERTMARK = 1103;
public const int EM_GETWORDBREAKPROCEX = 1104;
public const int TB_SETINSERTMARK = 1104;
public const int EM_SETWORDBREAKPROCEX = 1105;
public const int TB_INSERTMARKHITTEST = 1105;
public const int EM_SETUNDOLIMIT = 1106;
public const int TB_MOVEBUTTON = 1106;
public const int TB_GETMAXSIZE = 1107;
public const int EM_REDO = 1108;
public const int TB_SETEXTENDEDSTYLE = 1108;
public const int EM_CANREDO = 1109;
public const int TB_GETEXTENDEDSTYLE = 1109;
public const int EM_GETUNDONAME = 1110;
public const int TB_GETPADDING = 1110;
public const int EM_GETREDONAME = 1111;
public const int TB_SETPADDING = 1111;
public const int EM_STOPGROUPTYPING = 1112;
public const int TB_SETINSERTMARKCOLOR = 1112;
public const int EM_SETTEXTMODE = 1113;
public const int TB_GETINSERTMARKCOLOR = 1113;
public const int EM_GETTEXTMODE = 1114;
public const int TB_MAPACCELERATORW = 1114;
public const int EM_AUTOURLDETECT = 1115;
public const int TB_GETSTRINGW = 1115;
public const int EM_GETAUTOURLDETECT = 1116;
public const int TB_GETSTRINGA = 1116;
public const int EM_SETPALETTE = 1117;
public const int EM_GETTEXTEX = 1118;
public const int EM_GETTEXTLENGTHEX = 1119;
public const int EM_SHOWSCROLLBAR = 1120;
public const int EM_SETTEXTEX = 1121;
public const int TAPI_REPLY = 1123;
public const int ACM_OPENA = 1124;
public const int BFFM_SETSTATUSTEXTA = 1124;
public const int CDM_FIRST = 1124;
public const int CDM_GETSPEC = 1124;
public const int EM_SETPUNCTUATION = 1124;
public const int IPM_CLEARADDRESS = 1124;
public const int WM_CAP_UNICODE_START = 1124;
public const int ACM_PLAY = 1125;
public const int BFFM_ENABLEOK = 1125;
public const int CDM_GETFILEPATH = 1125;
public const int EM_GETPUNCTUATION = 1125;
public const int IPM_SETADDRESS = 1125;
public const int PSM_SETCURSEL = 1125;
public const int UDM_SETRANGE = 1125;
public const int WM_CHOOSEFONT_SETLOGFONT = 1125;
public const int ACM_STOP = 1126;
public const int BFFM_SETSELECTIONA = 1126;
public const int CDM_GETFOLDERPATH = 1126;
public const int EM_SETWORDWRAPMODE = 1126;
public const int IPM_GETADDRESS = 1126;
public const int PSM_REMOVEPAGE = 1126;
public const int UDM_GETRANGE = 1126;
public const int WM_CAP_SET_CALLBACK_ERRORW = 1126;
public const int WM_CHOOSEFONT_SETFLAGS = 1126;
public const int ACM_OPENW = 1127;
public const int BFFM_SETSELECTIONW = 1127;
public const int CDM_GETFOLDERIDLIST = 1127;
public const int EM_GETWORDWRAPMODE = 1127;
public const int IPM_SETRANGE = 1127;
public const int PSM_ADDPAGE = 1127;
public const int UDM_SETPOS = 1127;
public const int WM_CAP_SET_CALLBACK_STATUSW = 1127;
public const int BFFM_SETSTATUSTEXTW = 1128;
public const int CDM_SETCONTROLTEXT = 1128;
public const int EM_SETIMECOLOR = 1128;
public const int IPM_SETFOCUS = 1128;
public const int PSM_CHANGED = 1128;
public const int UDM_GETPOS = 1128;
public const int CDM_HIDECONTROL = 1129;
public const int EM_GETIMECOLOR = 1129;
public const int IPM_ISBLANK = 1129;
public const int PSM_RESTARTWINDOWS = 1129;
public const int UDM_SETBUDDY = 1129;
public const int CDM_SETDEFEXT = 1130;
public const int EM_SETIMEOPTIONS = 1130;
public const int PSM_REBOOTSYSTEM = 1130;
public const int UDM_GETBUDDY = 1130;
public const int EM_GETIMEOPTIONS = 1131;
public const int PSM_CANCELTOCLOSE = 1131;
public const int UDM_SETACCEL = 1131;
public const int EM_CONVPOSITION = 1132;
public const int PSM_QUERYSIBLINGS = 1132;
public const int UDM_GETACCEL = 1132;
public const int MCIWNDM_GETZOOM = 1133;
public const int PSM_UNCHANGED = 1133;
public const int UDM_SETBASE = 1133;
public const int PSM_APPLY = 1134;
public const int UDM_GETBASE = 1134;
public const int PSM_SETTITLEA = 1135;
public const int UDM_SETRANGE32 = 1135;
public const int PSM_SETWIZBUTTONS = 1136;
public const int UDM_GETRANGE32 = 1136;
public const int WM_CAP_DRIVER_GET_NAMEW = 1136;
public const int PSM_PRESSBUTTON = 1137;
public const int UDM_SETPOS32 = 1137;
public const int WM_CAP_DRIVER_GET_VERSIONW = 1137;
public const int PSM_SETCURSELID = 1138;
public const int UDM_GETPOS32 = 1138;
public const int PSM_SETFINISHTEXTA = 1139;
public const int PSM_GETTABCONTROL = 1140;
public const int PSM_ISDIALOGMESSAGE = 1141;
public const int MCIWNDM_REALIZE = 1142;
public const int PSM_GETCURRENTPAGEHWND = 1142;
public const int MCIWNDM_SETTIMEFORMATA = 1143;
public const int PSM_INSERTPAGE = 1143;
public const int EM_SETLANGOPTIONS = 1144;
public const int MCIWNDM_GETTIMEFORMATA = 1144;
public const int PSM_SETTITLEW = 1144;
public const int WM_CAP_FILE_SET_CAPTURE_FILEW = 1144;
public const int EM_GETLANGOPTIONS = 1145;
public const int MCIWNDM_VALIDATEMEDIA = 1145;
public const int PSM_SETFINISHTEXTW = 1145;
public const int WM_CAP_FILE_GET_CAPTURE_FILEW = 1145;
public const int EM_GETIMECOMPMODE = 1146;
public const int EM_FINDTEXTW = 1147;
public const int MCIWNDM_PLAYTO = 1147;
public const int WM_CAP_FILE_SAVEASW = 1147;
public const int EM_FINDTEXTEXW = 1148;
public const int MCIWNDM_GETFILENAMEA = 1148;
public const int EM_RECONVERSION = 1149;
public const int MCIWNDM_GETDEVICEA = 1149;
public const int PSM_SETHEADERTITLEA = 1149;
public const int WM_CAP_FILE_SAVEDIBW = 1149;
public const int EM_SETIMEMODEBIAS = 1150;
public const int MCIWNDM_GETPALETTE = 1150;
public const int PSM_SETHEADERTITLEW = 1150;
public const int EM_GETIMEMODEBIAS = 1151;
public const int MCIWNDM_SETPALETTE = 1151;
public const int PSM_SETHEADERSUBTITLEA = 1151;
public const int MCIWNDM_GETERRORA = 1152;
public const int PSM_SETHEADERSUBTITLEW = 1152;
public const int PSM_HWNDTOINDEX = 1153;
public const int PSM_INDEXTOHWND = 1154;
public const int MCIWNDM_SETINACTIVETIMER = 1155;
public const int PSM_PAGETOINDEX = 1155;
public const int PSM_INDEXTOPAGE = 1156;
public const int DL_BEGINDRAG = 1157;
public const int MCIWNDM_GETINACTIVETIMER = 1157;
public const int PSM_IDTOINDEX = 1157;
public const int DL_DRAGGING = 1158;
public const int PSM_INDEXTOID = 1158;
public const int DL_DROPPED = 1159;
public const int PSM_GETRESULT = 1159;
public const int DL_CANCELDRAG = 1160;
public const int PSM_RECALCPAGESIZES = 1160;
public const int MCIWNDM_GET_SOURCE = 1164;
public const int MCIWNDM_PUT_SOURCE = 1165;
public const int MCIWNDM_GET_DEST = 1166;
public const int MCIWNDM_PUT_DEST = 1167;
public const int MCIWNDM_CAN_PLAY = 1168;
public const int MCIWNDM_CAN_WINDOW = 1169;
public const int MCIWNDM_CAN_RECORD = 1170;
public const int MCIWNDM_CAN_SAVE = 1171;
public const int MCIWNDM_CAN_EJECT = 1172;
public const int MCIWNDM_CAN_CONFIG = 1173;
public const int IE_GETINK = 1174;
public const int IE_MSGFIRST = 1174;
public const int MCIWNDM_PALETTEKICK = 1174;
public const int IE_SETINK = 1175;
public const int IE_GETPENTIP = 1176;
public const int IE_SETPENTIP = 1177;
public const int IE_GETERASERTIP = 1178;
public const int IE_SETERASERTIP = 1179;
public const int IE_GETBKGND = 1180;
public const int IE_SETBKGND = 1181;
public const int IE_GETGRIDORIGIN = 1182;
public const int IE_SETGRIDORIGIN = 1183;
public const int IE_GETGRIDPEN = 1184;
public const int IE_SETGRIDPEN = 1185;
public const int IE_GETGRIDSIZE = 1186;
public const int IE_SETGRIDSIZE = 1187;
public const int IE_GETMODE = 1188;
public const int IE_SETMODE = 1189;
public const int IE_GETINKRECT = 1190;
public const int WM_CAP_SET_MCI_DEVICEW = 1190;
public const int WM_CAP_GET_MCI_DEVICEW = 1191;
public const int WM_CAP_PAL_OPENW = 1204;
public const int WM_CAP_PAL_SAVEW = 1205;
public const int IE_GETAPPDATA = 1208;
public const int IE_SETAPPDATA = 1209;
public const int IE_GETDRAWOPTS = 1210;
public const int IE_SETDRAWOPTS = 1211;
public const int IE_GETFORMAT = 1212;
public const int IE_SETFORMAT = 1213;
public const int IE_GETINKINPUT = 1214;
public const int IE_SETINKINPUT = 1215;
public const int IE_GETNOTIFY = 1216;
public const int IE_SETNOTIFY = 1217;
public const int IE_GETRECOG = 1218;
public const int IE_SETRECOG = 1219;
public const int IE_GETSECURITY = 1220;
public const int IE_SETSECURITY = 1221;
public const int IE_GETSEL = 1222;
public const int IE_SETSEL = 1223;
public const int CDM_LAST = 1224;
public const int EM_SETBIDIOPTIONS = 1224;
public const int IE_DOCOMMAND = 1224;
public const int MCIWNDM_NOTIFYMODE = 1224;
public const int EM_GETBIDIOPTIONS = 1225;
public const int IE_GETCOMMAND = 1225;
public const int EM_SETTYPOGRAPHYOPTIONS = 1226;
public const int IE_GETCOUNT = 1226;
public const int EM_GETTYPOGRAPHYOPTIONS = 1227;
public const int IE_GETGESTURE = 1227;
public const int MCIWNDM_NOTIFYMEDIA = 1227;
public const int EM_SETEDITSTYLE = 1228;
public const int IE_GETMENU = 1228;
public const int EM_GETEDITSTYLE = 1229;
public const int IE_GETPAINTDC = 1229;
public const int MCIWNDM_NOTIFYERROR = 1229;
public const int IE_GETPDEVENT = 1230;
public const int IE_GETSELCOUNT = 1231;
public const int IE_GETSELITEMS = 1232;
public const int IE_GETSTYLE = 1233;
public const int MCIWNDM_SETTIMEFORMATW = 1243;
public const int EM_OUTLINE = 1244;
public const int MCIWNDM_GETTIMEFORMATW = 1244;
public const int EM_GETSCROLLPOS = 1245;
public const int EM_SETSCROLLPOS = 1246;
public const int EM_SETFONTSIZE = 1247;
public const int EM_GETZOOM = 1248;
public const int MCIWNDM_GETFILENAMEW = 1248;
public const int EM_SETZOOM = 1249;
public const int MCIWNDM_GETDEVICEW = 1249;
public const int EM_GETVIEWKIND = 1250;
public const int EM_SETVIEWKIND = 1251;
public const int EM_GETPAGE = 1252;
public const int MCIWNDM_GETERRORW = 1252;
public const int EM_SETPAGE = 1253;
public const int EM_GETHYPHENATEINFO = 1254;
public const int EM_SETHYPHENATEINFO = 1255;
public const int EM_GETPAGEROTATE = 1259;
public const int EM_SETPAGEROTATE = 1260;
public const int EM_GETCTFMODEBIAS = 1261;
public const int EM_SETCTFMODEBIAS = 1262;
public const int EM_GETCTFOPENSTATUS = 1264;
public const int EM_SETCTFOPENSTATUS = 1265;
public const int EM_GETIMECOMPTEXT = 1266;
public const int EM_ISIME = 1267;
public const int EM_GETIMEPROPERTY = 1268;
public const int EM_GETQUERYRTFOBJ = 1293;
public const int EM_SETQUERYRTFOBJ = 1294;
public const int FM_GETFOCUS = 1536;
public const int FM_GETDRIVEINFOA = 1537;
public const int FM_GETSELCOUNT = 1538;
public const int FM_GETSELCOUNTLFN = 1539;
public const int FM_GETFILESELA = 1540;
public const int FM_GETFILESELLFNA = 1541;
public const int FM_REFRESH_WINDOWS = 1542;
public const int FM_RELOAD_EXTENSIONS = 1543;
public const int FM_GETDRIVEINFOW = 1553;
public const int FM_GETFILESELW = 1556;
public const int FM_GETFILESELLFNW = 1557;
public const int WLX_WM_SAS = 1625;
public const int SM_GETSELCOUNT = 2024;
public const int UM_GETSELCOUNT = 2024;
public const int WM_CPL_LAUNCH = 2024;
public const int SM_GETSERVERSELA = 2025;
public const int UM_GETUSERSELA = 2025;
public const int WM_CPL_LAUNCHED = 2025;
public const int SM_GETSERVERSELW = 2026;
public const int UM_GETUSERSELW = 2026;
public const int SM_GETCURFOCUSA = 2027;
public const int UM_GETGROUPSELA = 2027;
public const int SM_GETCURFOCUSW = 2028;
public const int UM_GETGROUPSELW = 2028;
public const int SM_GETOPTIONS = 2029;
public const int UM_GETCURFOCUSA = 2029;
public const int UM_GETCURFOCUSW = 2030;
public const int UM_GETOPTIONS = 2031;
public const int UM_GETOPTIONS2 = 2032;
public const int LVM_FIRST = 4096;
public const int LVM_GETBKCOLOR = 4096;
public const int LVM_SETBKCOLOR = 4097;
public const int LVM_GETIMAGELIST = 4098;
public const int LVM_SETIMAGELIST = 4099;
public const int LVM_GETITEMCOUNT = 4100;
public const int LVM_GETITEMA = 4101;
public const int LVM_SETITEMA = 4102;
public const int LVM_INSERTITEMA = 4103;
public const int LVM_DELETEITEM = 4104;
public const int LVM_DELETEALLITEMS = 4105;
public const int LVM_GETCALLBACKMASK = 4106;
public const int LVM_SETCALLBACKMASK = 4107;
public const int LVM_GETNEXTITEM = 4108;
public const int LVM_FINDITEMA = 4109;
public const int LVM_GETITEMRECT = 4110;
public const int LVM_SETITEMPOSITION = 4111;
public const int LVM_GETITEMPOSITION = 4112;
public const int LVM_GETSTRINGWIDTHA = 4113;
public const int LVM_HITTEST = 4114;
public const int LVM_ENSUREVISIBLE = 4115;
public const int LVM_SCROLL = 4116;
public const int LVM_REDRAWITEMS = 4117;
public const int LVM_ARRANGE = 4118;
public const int LVM_EDITLABELA = 4119;
public const int LVM_GETEDITCONTROL = 4120;
public const int LVM_GETCOLUMNA = 4121;
public const int LVM_SETCOLUMNA = 4122;
public const int LVM_INSERTCOLUMNA = 4123;
public const int LVM_DELETECOLUMN = 4124;
public const int LVM_GETCOLUMNWIDTH = 4125;
public const int LVM_SETCOLUMNWIDTH = 4126;
public const int LVM_GETHEADER = 4127;
public const int LVM_CREATEDRAGIMAGE = 4129;
public const int LVM_GETVIEWRECT = 4130;
public const int LVM_GETTEXTCOLOR = 4131;
public const int LVM_SETTEXTCOLOR = 4132;
public const int LVM_GETTEXTBKCOLOR = 4133;
public const int LVM_SETTEXTBKCOLOR = 4134;
public const int LVM_GETTOPINDEX = 4135;
public const int LVM_GETCOUNTPERPAGE = 4136;
public const int LVM_GETORIGIN = 4137;
public const int LVM_UPDATE = 4138;
public const int LVM_SETITEMSTATE = 4139;
public const int LVM_GETITEMSTATE = 4140;
public const int LVM_GETITEMTEXTA = 4141;
public const int LVM_SETITEMTEXTA = 4142;
public const int LVM_SETITEMCOUNT = 4143;
public const int LVM_SORTITEMS = 4144;
public const int LVM_SETITEMPOSITION32 = 4145;
public const int LVM_GETSELECTEDCOUNT = 4146;
public const int LVM_GETITEMSPACING = 4147;
public const int LVM_GETISEARCHSTRINGA = 4148;
public const int LVM_SETICONSPACING = 4149;
public const int LVM_SETEXTENDEDLISTVIEWSTYLE = 4150;
public const int LVM_GETEXTENDEDLISTVIEWSTYLE = 4151;
public const int LVM_GETSUBITEMRECT = 4152;
public const int LVM_SUBITEMHITTEST = 4153;
public const int LVM_SETCOLUMNORDERARRAY = 4154;
public const int LVM_GETCOLUMNORDERARRAY = 4155;
public const int LVM_SETHOTITEM = 4156;
public const int LVM_GETHOTITEM = 4157;
public const int LVM_SETHOTCURSOR = 4158;
public const int LVM_GETHOTCURSOR = 4159;
public const int LVM_APPROXIMATEVIEWRECT = 4160;
public const int LVM_SETWORKAREAS = 4161;
public const int LVM_GETSELECTIONMARK = 4162;
public const int LVM_SETSELECTIONMARK = 4163;
public const int LVM_SETBKIMAGEA = 4164;
public const int LVM_GETBKIMAGEA = 4165;
public const int LVM_GETWORKAREAS = 4166;
public const int LVM_SETHOVERTIME = 4167;
public const int LVM_GETHOVERTIME = 4168;
public const int LVM_GETNUMBEROFWORKAREAS = 4169;
public const int LVM_SETTOOLTIPS = 4170;
public const int LVM_GETITEMW = 4171;
public const int LVM_SETITEMW = 4172;
public const int LVM_INSERTITEMW = 4173;
public const int LVM_GETTOOLTIPS = 4174;
public const int LVM_FINDITEMW = 4179;
public const int LVM_GETSTRINGWIDTHW = 4183;
public const int LVM_GETCOLUMNW = 4191;
public const int LVM_SETCOLUMNW = 4192;
public const int LVM_INSERTCOLUMNW = 4193;
public const int LVM_GETITEMTEXTW = 4211;
public const int LVM_SETITEMTEXTW = 4212;
public const int LVM_GETISEARCHSTRINGW = 4213;
public const int LVM_EDITLABELW = 4214;
public const int LVM_GETBKIMAGEW = 4235;
public const int LVM_SETSELECTEDCOLUMN = 4236;
public const int LVM_SETTILEWIDTH = 4237;
public const int LVM_SETVIEW = 4238;
public const int LVM_GETVIEW = 4239;
public const int LVM_INSERTGROUP = 4241;
public const int LVM_SETGROUPINFO = 4243;
public const int LVM_GETGROUPINFO = 4245;
public const int LVM_REMOVEGROUP = 4246;
public const int LVM_MOVEGROUP = 4247;
public const int LVM_MOVEITEMTOGROUP = 4250;
public const int LVM_SETGROUPMETRICS = 4251;
public const int LVM_GETGROUPMETRICS = 4252;
public const int LVM_ENABLEGROUPVIEW = 4253;
public const int LVM_SORTGROUPS = 4254;
public const int LVM_INSERTGROUPSORTED = 4255;
public const int LVM_REMOVEALLGROUPS = 4256;
public const int LVM_HASGROUP = 4257;
public const int LVM_SETTILEVIEWINFO = 4258;
public const int LVM_GETTILEVIEWINFO = 4259;
public const int LVM_SETTILEINFO = 4260;
public const int LVM_GETTILEINFO = 4261;
public const int LVM_SETINSERTMARK = 4262;
public const int LVM_GETINSERTMARK = 4263;
public const int LVM_INSERTMARKHITTEST = 4264;
public const int LVM_GETINSERTMARKRECT = 4265;
public const int LVM_SETINSERTMARKCOLOR = 4266;
public const int LVM_GETINSERTMARKCOLOR = 4267;
public const int LVM_SETINFOTIP = 4269;
public const int LVM_GETSELECTEDCOLUMN = 4270;
public const int LVM_ISGROUPVIEWENABLED = 4271;
public const int LVM_GETOUTLINECOLOR = 4272;
public const int LVM_SETOUTLINECOLOR = 4273;
public const int LVM_CANCELEDITLABEL = 4275;
public const int LVM_MAPINDEXTOID = 4276;
public const int LVM_MAPIDTOINDEX = 4277;
public const int LVM_ISITEMVISIBLE = 4278;
public const int OCM__BASE = 8192;
public const int LVM_SETUNICODEFORMAT = 8197;
public const int LVM_GETUNICODEFORMAT = 8198;
public const int OCM_CTLCOLOR = 8217;
public const int OCM_DRAWITEM = 8235;
public const int OCM_MEASUREITEM = 8236;
public const int OCM_DELETEITEM = 8237;
public const int OCM_VKEYTOITEM = 8238;
public const int OCM_CHARTOITEM = 8239;
public const int OCM_COMPAREITEM = 8249;
public const int OCM_NOTIFY = 8270;
public const int OCM_COMMAND = 8465;
public const int OCM_HSCROLL = 8468;
public const int OCM_VSCROLL = 8469;
public const int OCM_CTLCOLORMSGBOX = 8498;
public const int OCM_CTLCOLOREDIT = 8499;
public const int OCM_CTLCOLORLISTBOX = 8500;
public const int OCM_CTLCOLORBTN = 8501;