-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhwman.xh
5467 lines (4646 loc) · 173 KB
/
hwman.xh
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
/*
* This file was generated by the SOM Compiler.
* FileName: hwman.xh.
* Generated using:
* SOM Precompiler somipc: 2.29.1.17
* SOM Emitter emitxh: 2.47
*/
#ifndef SOM_WPHwManagerEx_xh
#define SOM_WPHwManagerEx_xh
class WPHwManagerEx;
#define WPHwManagerEx_MajorVersion 1
#define WPHwManagerEx_MinorVersion 1
/*
* Passthru lines: File: "C.xh", "before"
*/
#define INCL_PM
#define INCL_BASE
#include <os2.h>
/* C++ SOM defs */
#include <somcls.xh>
#include <somcm.xh>
/* C++ parent defs */
#ifndef SOM_WPHwManager_xh
#include <wphwmgr.xh>
#endif
#ifndef WPHwManagerEx_API
#define WPHwManagerEx_API
/*
* -- The Class API
*/
/*
* Start of bindings for IDL types
*/
class SOMClass;
class SOMObject;
class WPFolder;
class M_WPObject;
class WPObject;
class WPImageFile;
class M_WPFileSystem;
class M_WPFolder;
class M_WPHwManager;
class THAssoc;
class somf_TAssoc;
class M_RMDeviceCollection;
class M_WPHwManagerEx;
/*
* End of bindings for IDL types.
*/
/* A procedure to create the WPHwManagerEx Class */
class M_WPHwManagerEx;
SOMEXTERN M_WPHwManagerEx * SOMLINK WPHwManagerExNewClass(
integer4 majorVersion,
integer4 minorVersion);
/* The API to the WPHwManagerEx class object, and the methods it introduces. */
SOMEXTERN struct WPHwManagerExClassDataStructure {
M_WPHwManagerEx *classObject;
} SOMDLINK WPHwManagerExClassData;
#define _WPHwManagerEx WPHwManagerExClassData.classObject
/* The API to parentMtabs for WPHwManagerEx, and the instance data it introduces. */
SOMEXTERN struct WPHwManagerExCClassDataStructure {
somMethodTabs parentMtab;
somDToken instanceDataToken;
} SOMDLINK WPHwManagerExCClassData;
/*
* -- Typedefs for WPHwManagerEx Method Procedures
*/
SOMEXTERN {
/*
* -- Typedefs for Reintroduced Wrapper Methods
*/
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddSnoop1Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddSnoop1Page *somTD_WPHwManagerEx_wpAddSnoop1Page;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpAddSettingsPages(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddSettingsPages *somTD_WPHwManagerEx_wpAddSettingsPages;
typedef void SOMLINK somTP_WPHwManagerEx_wpInitData(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpInitData *somTD_WPHwManagerEx_wpInitData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpMenuItemSelected(WPHwManagerEx *somSelf,
HWND hwndFrame,
ULONG ulMenuId);
typedef somTP_WPHwManagerEx_wpMenuItemSelected *somTD_WPHwManagerEx_wpMenuItemSelected;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpModifyPopupMenu(WPHwManagerEx *somSelf,
HWND hwndMenu,
HWND hwndCnr,
ULONG iPosition);
typedef somTP_WPHwManagerEx_wpModifyPopupMenu *somTD_WPHwManagerEx_wpModifyPopupMenu;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpPopulate(WPHwManagerEx *somSelf,
ULONG ulReserved,
PSZ pszPath,
BOOL fFoldersOnly);
typedef somTP_WPHwManagerEx_wpPopulate *somTD_WPHwManagerEx_wpPopulate;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetupOnce(WPHwManagerEx *somSelf,
PSZ pszSetupString);
typedef somTP_WPHwManagerEx_wpSetupOnce *somTD_WPHwManagerEx_wpSetupOnce;
typedef void SOMLINK somTP_WPHwManagerEx_wpUnInitData(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpUnInitData *somTD_WPHwManagerEx_wpUnInitData;
typedef PMINIRECORDCORE SOMLINK somTP_WPHwManagerEx_wpCnrInsertObject(WPHwManagerEx *somSelf,
HWND hwndCnr,
PPOINTL pptlIcon,
PMINIRECORDCORE preccParent,
PRECORDINSERT pRecInsert);
typedef somTP_WPHwManagerEx_wpCnrInsertObject *somTD_WPHwManagerEx_wpCnrInsertObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrFlags(WPHwManagerEx *somSelf,
ULONG ulFlags);
typedef somTP_WPHwManagerEx_wpSetFldrFlags *somTD_WPHwManagerEx_wpSetFldrFlags;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryFldrFlags(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryFldrFlags *somTD_WPHwManagerEx_wpQueryFldrFlags;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrFont(WPHwManagerEx *somSelf,
PSZ pszFont,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpSetFldrFont *somTD_WPHwManagerEx_wpSetFldrFont;
typedef PSZ SOMLINK somTP_WPHwManagerEx_wpQueryFldrFont(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpQueryFldrFont *somTD_WPHwManagerEx_wpQueryFldrFont;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrAttr(WPHwManagerEx *somSelf,
ULONG Attr,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpSetFldrAttr *somTD_WPHwManagerEx_wpSetFldrAttr;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryFldrAttr(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpQueryFldrAttr *somTD_WPHwManagerEx_wpQueryFldrAttr;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetNextIconPos(WPHwManagerEx *somSelf,
PPOINTL pptl);
typedef somTP_WPHwManagerEx_wpSetNextIconPos *somTD_WPHwManagerEx_wpSetNextIconPos;
typedef PPOINTL SOMLINK somTP_WPHwManagerEx_wpQueryNextIconPos(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryNextIconPos *somTD_WPHwManagerEx_wpQueryNextIconPos;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpQueryContent(WPHwManagerEx *somSelf,
WPObject* Object,
ULONG ulOption);
typedef somTP_WPHwManagerEx_wpQueryContent *somTD_WPHwManagerEx_wpQueryContent;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderView1Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderView1Page *somTD_WPHwManagerEx_wpAddFolderView1Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderView2Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderView2Page *somTD_WPHwManagerEx_wpAddFolderView2Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderView3Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderView3Page *somTD_WPHwManagerEx_wpAddFolderView3Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderIncludePage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderIncludePage *somTD_WPHwManagerEx_wpAddFolderIncludePage;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderSortPage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderSortPage *somTD_WPHwManagerEx_wpAddFolderSortPage;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderBackgroundPage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderBackgroundPage *somTD_WPHwManagerEx_wpAddFolderBackgroundPage;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderMenu2Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderMenu2Page *somTD_WPHwManagerEx_wpAddFolderMenu2Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFolderSelfClosePage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFolderSelfClosePage *somTD_WPHwManagerEx_wpAddFolderSelfClosePage;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpInitIconPosData(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpInitIconPosData *somTD_WPHwManagerEx_wpInitIconPosData;
typedef void SOMLINK somTP_WPHwManagerEx_wpFreeIconPosData(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpFreeIconPosData *somTD_WPHwManagerEx_wpFreeIconPosData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpStoreIconPosData(WPHwManagerEx *somSelf,
PICONPOS pIconPos,
ULONG cbSize);
typedef somTP_WPHwManagerEx_wpStoreIconPosData *somTD_WPHwManagerEx_wpStoreIconPosData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpQueryIconPosition(WPHwManagerEx *somSelf,
PSZ pszIdentity,
PPOINTL pptl,
PULONG pIndex);
typedef somTP_WPHwManagerEx_wpQueryIconPosition *somTD_WPHwManagerEx_wpQueryIconPosition;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrSort(WPHwManagerEx *somSelf,
PVOID pSortRecord,
ULONG ulView,
ULONG ulType);
typedef somTP_WPHwManagerEx_wpSetFldrSort *somTD_WPHwManagerEx_wpSetFldrSort;
typedef PVOID SOMLINK somTP_WPHwManagerEx_wpQueryFldrSort(WPHwManagerEx *somSelf,
ULONG ulView,
ULONG ulType);
typedef somTP_WPHwManagerEx_wpQueryFldrSort *somTD_WPHwManagerEx_wpQueryFldrSort;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestoreFldrRunObjs(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpRestoreFldrRunObjs *somTD_WPHwManagerEx_wpRestoreFldrRunObjs;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpStoreFldrRunObjs(WPHwManagerEx *somSelf,
ULONG ulType);
typedef somTP_WPHwManagerEx_wpStoreFldrRunObjs *somTD_WPHwManagerEx_wpStoreFldrRunObjs;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpHideFldrRunObjs(WPHwManagerEx *somSelf,
BOOL fHide);
typedef somTP_WPHwManagerEx_wpHideFldrRunObjs *somTD_WPHwManagerEx_wpHideFldrRunObjs;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpDeleteContents(WPHwManagerEx *somSelf,
ULONG fConfirmations);
typedef somTP_WPHwManagerEx_wpDeleteContents *somTD_WPHwManagerEx_wpDeleteContents;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrDetailsClass(WPHwManagerEx *somSelf,
M_WPObject* Class);
typedef somTP_WPHwManagerEx_wpSetFldrDetailsClass *somTD_WPHwManagerEx_wpSetFldrDetailsClass;
typedef M_WPObject* SOMLINK somTP_WPHwManagerEx_wpQueryFldrDetailsClass(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryFldrDetailsClass *somTD_WPHwManagerEx_wpQueryFldrDetailsClass;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSearchFolder(WPHwManagerEx *somSelf,
PSZ pszName,
ULONG ulSearchType,
ULONG ulLen,
PSEARCH_INFO pInfo,
WPFolder* ResultFolder);
typedef somTP_WPHwManagerEx_wpSearchFolder *somTD_WPHwManagerEx_wpSearchFolder;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpContainsFolders(WPHwManagerEx *somSelf,
BOOL* pfSubFolders);
typedef somTP_WPHwManagerEx_wpContainsFolders *somTD_WPHwManagerEx_wpContainsFolders;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpQueryOpenFolders(WPHwManagerEx *somSelf,
ULONG ulOption);
typedef somTP_WPHwManagerEx_wpQueryOpenFolders *somTD_WPHwManagerEx_wpQueryOpenFolders;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpModifyFldrFlags(WPHwManagerEx *somSelf,
ULONG ulFlags,
ULONG ulFlagMask);
typedef somTP_WPHwManagerEx_wpModifyFldrFlags *somTD_WPHwManagerEx_wpModifyFldrFlags;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpAddToContent(WPHwManagerEx *somSelf,
WPObject* Object);
typedef somTP_WPHwManagerEx_wpAddToContent *somTD_WPHwManagerEx_wpAddToContent;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpDeleteFromContent(WPHwManagerEx *somSelf,
WPObject* Object);
typedef somTP_WPHwManagerEx_wpDeleteFromContent *somTD_WPHwManagerEx_wpDeleteFromContent;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetDetailsColumnVisibility(WPHwManagerEx *somSelf,
ULONG index,
BOOL Visible);
typedef somTP_WPHwManagerEx_wpSetDetailsColumnVisibility *somTD_WPHwManagerEx_wpSetDetailsColumnVisibility;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsDetailsColumnVisible(WPHwManagerEx *somSelf,
ULONG index);
typedef somTP_WPHwManagerEx_wpIsDetailsColumnVisible *somTD_WPHwManagerEx_wpIsDetailsColumnVisible;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFldrSortClass(WPHwManagerEx *somSelf,
M_WPObject* Class);
typedef somTP_WPHwManagerEx_wpSetFldrSortClass *somTD_WPHwManagerEx_wpSetFldrSortClass;
typedef M_WPObject* SOMLINK somTP_WPHwManagerEx_wpQueryFldrSortClass(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryFldrSortClass *somTD_WPHwManagerEx_wpQueryFldrSortClass;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetSortAttribAvailable(WPHwManagerEx *somSelf,
ULONG index,
BOOL Available);
typedef somTP_WPHwManagerEx_wpSetSortAttribAvailable *somTD_WPHwManagerEx_wpSetSortAttribAvailable;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsSortAttribAvailable(WPHwManagerEx *somSelf,
ULONG index);
typedef somTP_WPHwManagerEx_wpIsSortAttribAvailable *somTD_WPHwManagerEx_wpIsSortAttribAvailable;
typedef char* SOMLINK somTP_WPHwManagerEx_wpQueryIconViewPos(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryIconViewPos *somTD_WPHwManagerEx_wpQueryIconViewPos;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpAddFirstChild(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpAddFirstChild *somTD_WPHwManagerEx_wpAddFirstChild;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpFlushNotifications(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpFlushNotifications *somTD_WPHwManagerEx_wpFlushNotifications;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetMenuBarVisibility(WPHwManagerEx *somSelf,
ULONG ulVisibility);
typedef somTP_WPHwManagerEx_wpSetMenuBarVisibility *somTD_WPHwManagerEx_wpSetMenuBarVisibility;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryMenuBarVisibility(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryMenuBarVisibility *somTD_WPHwManagerEx_wpQueryMenuBarVisibility;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryIconTextBackgroundColor(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryIconTextBackgroundColor *somTD_WPHwManagerEx_wpQueryIconTextBackgroundColor;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetIconTextBackgroundColor(WPHwManagerEx *somSelf,
ULONG ulColor,
BOOL fRefreshViews);
typedef somTP_WPHwManagerEx_wpSetIconTextBackgroundColor *somTD_WPHwManagerEx_wpSetIconTextBackgroundColor;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryIconTextColor(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpQueryIconTextColor *somTD_WPHwManagerEx_wpQueryIconTextColor;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetIconTextColor(WPHwManagerEx *somSelf,
ULONG ulColor,
ULONG ulView,
BOOL fRefreshViews);
typedef somTP_WPHwManagerEx_wpSetIconTextColor *somTD_WPHwManagerEx_wpSetIconTextColor;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryShadowTextColor(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpQueryShadowTextColor *somTD_WPHwManagerEx_wpQueryShadowTextColor;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetShadowTextColor(WPHwManagerEx *somSelf,
ULONG ulColor,
ULONG ulView,
BOOL fRefreshViews);
typedef somTP_WPHwManagerEx_wpSetShadowTextColor *somTD_WPHwManagerEx_wpSetShadowTextColor;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryIconTextVisibility(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpQueryIconTextVisibility *somTD_WPHwManagerEx_wpQueryIconTextVisibility;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetIconTextVisibility(WPHwManagerEx *somSelf,
ULONG ulOption,
ULONG ulView,
BOOL fRefreshViews);
typedef somTP_WPHwManagerEx_wpSetIconTextVisibility *somTD_WPHwManagerEx_wpSetIconTextVisibility;
typedef void SOMLINK somTP_WPHwManagerEx_wpQueryFldrBackground(WPHwManagerEx *somSelf,
PSZ* ppszImageFileName,
ULONG* pulImageMode,
ULONG* pulScaleFactor,
ULONG* pulBackgroundType,
long* plBackgroundColor);
typedef somTP_WPHwManagerEx_wpQueryFldrBackground *somTD_WPHwManagerEx_wpQueryFldrBackground;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetFldrBackground(WPHwManagerEx *somSelf,
PSZ pszImageFileName,
ULONG ulImageMode,
ULONG ulScaleFactor,
ULONG ulBackgroundType,
long lBackgroundColor);
typedef somTP_WPHwManagerEx_wpSetFldrBackground *somTD_WPHwManagerEx_wpSetFldrBackground;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpFree(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpFree *somTD_WPHwManagerEx_wpFree;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpDelete(WPHwManagerEx *somSelf,
ULONG fConfirmations);
typedef somTP_WPHwManagerEx_wpDelete *somTD_WPHwManagerEx_wpDelete;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpConfirmDelete(WPHwManagerEx *somSelf,
ULONG fConfirmations);
typedef somTP_WPHwManagerEx_wpConfirmDelete *somTD_WPHwManagerEx_wpConfirmDelete;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveState(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpSaveState *somTD_WPHwManagerEx_wpSaveState;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestoreState(WPHwManagerEx *somSelf,
ULONG ulReserved);
typedef somTP_WPHwManagerEx_wpRestoreState *somTD_WPHwManagerEx_wpRestoreState;
typedef HWND SOMLINK somTP_WPHwManagerEx_wpOpen(WPHwManagerEx *somSelf,
HWND hwndCnr,
ULONG ulView,
ULONG param);
typedef somTP_WPHwManagerEx_wpOpen *somTD_WPHwManagerEx_wpOpen;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetup(WPHwManagerEx *somSelf,
PSZ pszSetupString);
typedef somTP_WPHwManagerEx_wpSetup *somTD_WPHwManagerEx_wpSetup;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpMoveObject(WPHwManagerEx *somSelf,
WPFolder* Folder);
typedef somTP_WPHwManagerEx_wpMoveObject *somTD_WPHwManagerEx_wpMoveObject;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpDrop(WPHwManagerEx *somSelf,
HWND hwndCnr,
PDRAGINFO pdrgInfo,
PDRAGITEM pdrgItem);
typedef somTP_WPHwManagerEx_wpDrop *somTD_WPHwManagerEx_wpDrop;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpDragOver(WPHwManagerEx *somSelf,
HWND hwndCnr,
PDRAGINFO pdrgInfo);
typedef somTP_WPHwManagerEx_wpDragOver *somTD_WPHwManagerEx_wpDragOver;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpMenuItemHelpSelected(WPHwManagerEx *somSelf,
ULONG MenuId);
typedef somTP_WPHwManagerEx_wpMenuItemHelpSelected *somTD_WPHwManagerEx_wpMenuItemHelpSelected;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFile3Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFile3Page *somTD_WPHwManagerEx_wpAddFile3Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFile2Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFile2Page *somTD_WPHwManagerEx_wpAddFile2Page;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpFormatDragItem(WPHwManagerEx *somSelf,
PDRAGITEM pdrgItem);
typedef somTP_WPHwManagerEx_wpFormatDragItem *somTD_WPHwManagerEx_wpFormatDragItem;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpRender(WPHwManagerEx *somSelf,
PDRAGTRANSFER pdxfer);
typedef somTP_WPHwManagerEx_wpRender *somTD_WPHwManagerEx_wpRender;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRefresh(WPHwManagerEx *somSelf,
ULONG ulView,
PVOID pReserved);
typedef somTP_WPHwManagerEx_wpRefresh *somTD_WPHwManagerEx_wpRefresh;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryDefaultView(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryDefaultView *somTD_WPHwManagerEx_wpQueryDefaultView;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpRenderComplete(WPHwManagerEx *somSelf,
PDRAGTRANSFER pdxfer,
ULONG ulResult);
typedef somTP_WPHwManagerEx_wpRenderComplete *somTD_WPHwManagerEx_wpRenderComplete;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFileMenuPage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFileMenuPage *somTD_WPHwManagerEx_wpAddFileMenuPage;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpQueryDefaultHelp(WPHwManagerEx *somSelf,
PULONG pHelpPanelId,
PSZ HelpLibrary);
typedef somTP_WPHwManagerEx_wpQueryDefaultHelp *somTD_WPHwManagerEx_wpQueryDefaultHelp;
typedef void SOMLINK somTP_WPHwManagerEx_wpObjectReady(WPHwManagerEx *somSelf,
ULONG ulCode,
WPObject* refObject);
typedef somTP_WPHwManagerEx_wpObjectReady *somTD_WPHwManagerEx_wpObjectReady;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddObjectWindowPage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddObjectWindowPage *somTD_WPHwManagerEx_wpAddObjectWindowPage;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpModifyMenu(WPHwManagerEx *somSelf,
HWND hwndMenu,
HWND hwndCnr,
ULONG iPosition,
ULONG ulMenuType,
ULONG ulView,
ULONG ulReserved);
typedef somTP_WPHwManagerEx_wpModifyMenu *somTD_WPHwManagerEx_wpModifyMenu;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpFilterMenu(WPHwManagerEx *somSelf,
FILTERFLAGS* pFlags,
HWND hwndCnr,
BOOL fMultiSelect,
ULONG ulMenuType,
ULONG ulView,
ULONG ulReserved);
typedef somTP_WPHwManagerEx_wpFilterMenu *somTD_WPHwManagerEx_wpFilterMenu;
typedef HWND SOMLINK somTP_WPHwManagerEx_wpDisplayMenu(WPHwManagerEx *somSelf,
HWND hwndOwner,
HWND hwndClient,
POINTL* ptlPopupPt,
ULONG ulMenuType,
ULONG ulReserved);
typedef somTP_WPHwManagerEx_wpDisplayMenu *somTD_WPHwManagerEx_wpDisplayMenu;
typedef void SOMLINK somTP_WPHwManagerEx_somDefaultInit(WPHwManagerEx *somSelf,
som3InitCtrl* ctrl);
typedef somTP_WPHwManagerEx_somDefaultInit *somTD_WPHwManagerEx_somDefaultInit;
typedef void SOMLINK somTP_WPHwManagerEx_somDestruct(WPHwManagerEx *somSelf,
octet doFree,
som3DestructCtrl* ctrl);
typedef somTP_WPHwManagerEx_somDestruct *somTD_WPHwManagerEx_somDestruct;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetIconData(WPHwManagerEx *somSelf,
PICONINFO pIconInfo);
typedef somTP_WPHwManagerEx_wpSetIconData *somTD_WPHwManagerEx_wpSetIconData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetRealName(WPHwManagerEx *somSelf,
PSZ pszName);
typedef somTP_WPHwManagerEx_wpSetRealName *somTD_WPHwManagerEx_wpSetRealName;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetType(WPHwManagerEx *somSelf,
PSZ pszTypes,
PFEA2LIST pfeal);
typedef somTP_WPHwManagerEx_wpSetType *somTD_WPHwManagerEx_wpSetType;
typedef PSZ SOMLINK somTP_WPHwManagerEx_wpQueryType(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryType *somTD_WPHwManagerEx_wpQueryType;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetAttr(WPHwManagerEx *somSelf,
ULONG attrFile);
typedef somTP_WPHwManagerEx_wpSetAttr *somTD_WPHwManagerEx_wpSetAttr;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryAttr(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryAttr *somTD_WPHwManagerEx_wpQueryAttr;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddFile1Page(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddFile1Page *somTD_WPHwManagerEx_wpAddFile1Page;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryCreation(WPHwManagerEx *somSelf,
FDATE* fdate,
FTIME* ftime);
typedef somTP_WPHwManagerEx_wpQueryCreation *somTD_WPHwManagerEx_wpQueryCreation;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryLastAccess(WPHwManagerEx *somSelf,
FDATE* fdate,
FTIME* ftime);
typedef somTP_WPHwManagerEx_wpQueryLastAccess *somTD_WPHwManagerEx_wpQueryLastAccess;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryLastWrite(WPHwManagerEx *somSelf,
FDATE* fdate,
FTIME* ftime);
typedef somTP_WPHwManagerEx_wpQueryLastWrite *somTD_WPHwManagerEx_wpQueryLastWrite;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryFileSize(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryFileSize *somTD_WPHwManagerEx_wpQueryFileSize;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryEASize(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryEASize *somTD_WPHwManagerEx_wpQueryEASize;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpSetDateInfo(WPHwManagerEx *somSelf,
FILEFINDBUF4* pstFileFindBuf);
typedef somTP_WPHwManagerEx_wpSetDateInfo *somTD_WPHwManagerEx_wpSetDateInfo;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpSetFileSizeInfo(WPHwManagerEx *somSelf,
ULONG cbFileSize,
ULONG cbEASize);
typedef somTP_WPHwManagerEx_wpSetFileSizeInfo *somTD_WPHwManagerEx_wpSetFileSizeInfo;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryRefreshFlags(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryRefreshFlags *somTD_WPHwManagerEx_wpQueryRefreshFlags;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetRefreshFlags(WPHwManagerEx *somSelf,
ULONG ulRefreshFlags);
typedef somTP_WPHwManagerEx_wpSetRefreshFlags *somTD_WPHwManagerEx_wpSetRefreshFlags;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpPrintPlainTextFile(WPHwManagerEx *somSelf,
PPRINTDEST pPrintDest);
typedef somTP_WPHwManagerEx_wpPrintPlainTextFile *somTD_WPHwManagerEx_wpPrintPlainTextFile;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetTitleAndRenameFile(WPHwManagerEx *somSelf,
PSZ pszNewTitle,
ULONG fConfirmations);
typedef somTP_WPHwManagerEx_wpSetTitleAndRenameFile *somTD_WPHwManagerEx_wpSetTitleAndRenameFile;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpConfirmRenameFileWithExt(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpConfirmRenameFileWithExt *somTD_WPHwManagerEx_wpConfirmRenameFileWithExt;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpVerifyUpdateAccess(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpVerifyUpdateAccess *somTD_WPHwManagerEx_wpVerifyUpdateAccess;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryEASupport(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryEASupport *somTD_WPHwManagerEx_wpQueryEASupport;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpAddUserItemsToPopupMenu(WPHwManagerEx *somSelf,
HWND hwndMenu,
HWND hwndCnr,
ULONG iPosition);
typedef somTP_WPHwManagerEx_wpAddUserItemsToPopupMenu *somTD_WPHwManagerEx_wpAddUserItemsToPopupMenu;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsDiskSwapped(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpIsDiskSwapped *somTD_WPHwManagerEx_wpIsDiskSwapped;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpQueryRealName(WPHwManagerEx *somSelf,
PSZ pszFilename,
PULONG pcb,
BOOL fQualified);
typedef somTP_WPHwManagerEx_wpQueryRealName *somTD_WPHwManagerEx_wpQueryRealName;
typedef PSZ SOMLINK somTP_WPHwManagerEx_wpQueryFilename(WPHwManagerEx *somSelf,
PSZ pszFilename,
BOOL fQualified);
typedef somTP_WPHwManagerEx_wpQueryFilename *somTD_WPHwManagerEx_wpQueryFilename;
typedef WPFileSystem* SOMLINK somTP_WPHwManagerEx_wpQueryDisk(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryDisk *somTD_WPHwManagerEx_wpQueryDisk;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryDateInfo(WPHwManagerEx *somSelf,
FILEFINDBUF4* pstFileFindBuf);
typedef somTP_WPHwManagerEx_wpQueryDateInfo *somTD_WPHwManagerEx_wpQueryDateInfo;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpConfirmKeepAssoc(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpConfirmKeepAssoc *somTD_WPHwManagerEx_wpConfirmKeepAssoc;
typedef void SOMLINK somTP_WPHwManagerEx_wpQueryFileSizeL(WPHwManagerEx *somSelf,
PLONGLONG pllFileSize);
typedef somTP_WPHwManagerEx_wpQueryFileSizeL *somTD_WPHwManagerEx_wpQueryFileSizeL;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpSetFileSizeL(WPHwManagerEx *somSelf,
PLONGLONG pllFileSize);
typedef somTP_WPHwManagerEx_wpSetFileSizeL *somTD_WPHwManagerEx_wpSetFileSizeL;
typedef HOBJECT SOMLINK somTP_WPHwManagerEx_wpQueryHandle(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryHandle *somTD_WPHwManagerEx_wpQueryHandle;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveImmediate(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpSaveImmediate *somTD_WPHwManagerEx_wpSaveImmediate;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetTitle(WPHwManagerEx *somSelf,
PSZ pszNewTitle);
typedef somTP_WPHwManagerEx_wpSetTitle *somTD_WPHwManagerEx_wpSetTitle;
typedef HWND SOMLINK somTP_WPHwManagerEx_wpViewObject(WPHwManagerEx *somSelf,
HWND hwndCnr,
ULONG ulView,
ULONG param);
typedef somTP_WPHwManagerEx_wpViewObject *somTD_WPHwManagerEx_wpViewObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSwitchTo(WPHwManagerEx *somSelf,
ULONG View);
typedef somTP_WPHwManagerEx_wpSwitchTo *somTD_WPHwManagerEx_wpSwitchTo;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpCopyObject(WPHwManagerEx *somSelf,
WPFolder* Folder,
BOOL fLock);
typedef somTP_WPHwManagerEx_wpCopyObject *somTD_WPHwManagerEx_wpCopyObject;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpCreateFromTemplate(WPHwManagerEx *somSelf,
WPFolder* folder,
BOOL fLock);
typedef somTP_WPHwManagerEx_wpCreateFromTemplate *somTD_WPHwManagerEx_wpCreateFromTemplate;
typedef HPOINTER SOMLINK somTP_WPHwManagerEx_wpQueryIcon(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryIcon *somTD_WPHwManagerEx_wpQueryIcon;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryIconData(WPHwManagerEx *somSelf,
PICONINFO pIconInfo);
typedef somTP_WPHwManagerEx_wpQueryIconData *somTD_WPHwManagerEx_wpQueryIconData;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryDetailsData(WPHwManagerEx *somSelf,
PVOID* ppDetailsData,
PULONG pcp);
typedef somTP_WPHwManagerEx_wpQueryDetailsData *somTD_WPHwManagerEx_wpQueryDetailsData;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpDraggedOverObject(WPHwManagerEx *somSelf,
WPObject* DraggedOverObject);
typedef somTP_WPHwManagerEx_wpDraggedOverObject *somTD_WPHwManagerEx_wpDraggedOverObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpDroppedOnObject(WPHwManagerEx *somSelf,
WPObject* DroppedOnObject);
typedef somTP_WPHwManagerEx_wpDroppedOnObject *somTD_WPHwManagerEx_wpDroppedOnObject;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryNameClashOptions(WPHwManagerEx *somSelf,
ULONG menuID);
typedef somTP_WPHwManagerEx_wpQueryNameClashOptions *somTD_WPHwManagerEx_wpQueryNameClashOptions;
typedef BOOL32 SOMLINK somTP_WPHwManagerEx_wpAppendObject(WPHwManagerEx *somSelf,
WPObject* targetObject,
BOOL32 fMove);
typedef somTP_WPHwManagerEx_wpAppendObject *somTD_WPHwManagerEx_wpAppendObject;
typedef BOOL32 SOMLINK somTP_WPHwManagerEx_wpReplaceObject(WPHwManagerEx *somSelf,
WPObject* targetObject,
BOOL32 fMove);
typedef somTP_WPHwManagerEx_wpReplaceObject *somTD_WPHwManagerEx_wpReplaceObject;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryStyle(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryStyle *somTD_WPHwManagerEx_wpQueryStyle;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpDoesObjectMatch(WPHwManagerEx *somSelf,
PVOID pvoidExtendedCriteria);
typedef somTP_WPHwManagerEx_wpDoesObjectMatch *somTD_WPHwManagerEx_wpDoesObjectMatch;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIdentify(WPHwManagerEx *somSelf,
PSZ pszIdentity);
typedef somTP_WPHwManagerEx_wpIdentify *somTD_WPHwManagerEx_wpIdentify;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsDeleteable(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpIsDeleteable *somTD_WPHwManagerEx_wpIsDeleteable;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddObjectGeneralPage(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddObjectGeneralPage *somTD_WPHwManagerEx_wpAddObjectGeneralPage;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpAddObjectGeneralPage2(WPHwManagerEx *somSelf,
HWND hwndNotebook);
typedef somTP_WPHwManagerEx_wpAddObjectGeneralPage2 *somTD_WPHwManagerEx_wpAddObjectGeneralPage2;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpAddToObjUseList(WPHwManagerEx *somSelf,
PUSEITEM pUseItem);
typedef somTP_WPHwManagerEx_wpAddToObjUseList *somTD_WPHwManagerEx_wpAddToObjUseList;
typedef PBYTE SOMLINK somTP_WPHwManagerEx_wpAllocMem(WPHwManagerEx *somSelf,
ULONG cbBytes,
PULONG prc);
typedef somTP_WPHwManagerEx_wpAllocMem *somTD_WPHwManagerEx_wpAllocMem;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpAssertObjectMutexSem(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpAssertObjectMutexSem *somTD_WPHwManagerEx_wpAssertObjectMutexSem;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpClose(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpClose *somTD_WPHwManagerEx_wpClose;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpCnrRemoveObject(WPHwManagerEx *somSelf,
HWND hwndCnr);
typedef somTP_WPHwManagerEx_wpCnrRemoveObject *somTD_WPHwManagerEx_wpCnrRemoveObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpCnrSetEmphasis(WPHwManagerEx *somSelf,
ULONG ulEmphasisAttr,
BOOL fTurnOn);
typedef somTP_WPHwManagerEx_wpCnrSetEmphasis *somTD_WPHwManagerEx_wpCnrSetEmphasis;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpConfirmObjectTitle(WPHwManagerEx *somSelf,
WPFolder* Folder,
WPObject** ppDuplicate,
PSZ pszTitle,
ULONG cbTitle,
ULONG menuID);
typedef somTP_WPHwManagerEx_wpConfirmObjectTitle *somTD_WPHwManagerEx_wpConfirmObjectTitle;
typedef void SOMLINK somTP_WPHwManagerEx_wpCopiedFromTemplate(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpCopiedFromTemplate *somTD_WPHwManagerEx_wpCopiedFromTemplate;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpCreateAnother(WPHwManagerEx *somSelf,
PSZ pszTitle,
PSZ pszSetupEnv,
WPFolder* Folder);
typedef somTP_WPHwManagerEx_wpCreateAnother *somTD_WPHwManagerEx_wpCreateAnother;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpCreateShadowObject(WPHwManagerEx *somSelf,
WPFolder* Folder,
BOOL fLock);
typedef somTP_WPHwManagerEx_wpCreateShadowObject *somTD_WPHwManagerEx_wpCreateShadowObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpDeleteFromObjUseList(WPHwManagerEx *somSelf,
PUSEITEM pUseItem);
typedef somTP_WPHwManagerEx_wpDeleteFromObjUseList *somTD_WPHwManagerEx_wpDeleteFromObjUseList;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpDisplayHelp(WPHwManagerEx *somSelf,
ULONG HelpPanelId,
PSZ HelpLibrary);
typedef somTP_WPHwManagerEx_wpDisplayHelp *somTD_WPHwManagerEx_wpDisplayHelp;
typedef MRESULT SOMLINK somTP_WPHwManagerEx_wpEndConversation(WPHwManagerEx *somSelf,
ULONG ulItemID,
ULONG flResult);
typedef somTP_WPHwManagerEx_wpEndConversation *somTD_WPHwManagerEx_wpEndConversation;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpFilterPopupMenu(WPHwManagerEx *somSelf,
ULONG ulFlags,
HWND hwndCnr,
BOOL fMultiSelect);
typedef somTP_WPHwManagerEx_wpFilterPopupMenu *somTD_WPHwManagerEx_wpFilterPopupMenu;
typedef PUSEITEM SOMLINK somTP_WPHwManagerEx_wpFindUseItem(WPHwManagerEx *somSelf,
ULONG type,
PUSEITEM pCurrentItem);
typedef somTP_WPHwManagerEx_wpFindUseItem *somTD_WPHwManagerEx_wpFindUseItem;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpFreeMem(WPHwManagerEx *somSelf,
PBYTE pByte);
typedef somTP_WPHwManagerEx_wpFreeMem *somTD_WPHwManagerEx_wpFreeMem;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpHide(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpHide *somTD_WPHwManagerEx_wpHide;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpInsertPopupMenuItems(WPHwManagerEx *somSelf,
HWND hwndMenu,
ULONG iPosition,
HMODULE hmod,
ULONG MenuID,
ULONG SubMenuID);
typedef somTP_WPHwManagerEx_wpInsertPopupMenuItems *somTD_WPHwManagerEx_wpInsertPopupMenuItems;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpInsertMenuItems(WPHwManagerEx *somSelf,
HWND hwndMenu,
ULONG iPosition,
HMODULE hmod,
ULONG MenuID,
ULONG SubMenuID);
typedef somTP_WPHwManagerEx_wpInsertMenuItems *somTD_WPHwManagerEx_wpInsertMenuItems;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpInsertSettingsPage(WPHwManagerEx *somSelf,
HWND hwndNotebook,
PPAGEINFO ppageinfo);
typedef somTP_WPHwManagerEx_wpInsertSettingsPage *somTD_WPHwManagerEx_wpInsertSettingsPage;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpPrintObject(WPHwManagerEx *somSelf,
PPRINTDEST pPrintDest,
ULONG ulReserved);
typedef somTP_WPHwManagerEx_wpPrintObject *somTD_WPHwManagerEx_wpPrintObject;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryConcurrentView(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryConcurrentView *somTD_WPHwManagerEx_wpQueryConcurrentView;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryButtonAppearance(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryButtonAppearance *somTD_WPHwManagerEx_wpQueryButtonAppearance;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryConfirmations(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryConfirmations *somTD_WPHwManagerEx_wpQueryConfirmations;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryError(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryError *somTD_WPHwManagerEx_wpQueryError;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetFolder(WPHwManagerEx *somSelf,
WPObject* container);
typedef somTP_WPHwManagerEx_wpSetFolder *somTD_WPHwManagerEx_wpSetFolder;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpQueryFolder(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryFolder *somTD_WPHwManagerEx_wpQueryFolder;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryMinWindow(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryMinWindow *somTD_WPHwManagerEx_wpQueryMinWindow;
typedef BOOL32 SOMLINK somTP_WPHwManagerEx_wpSetTaskRec(WPHwManagerEx *somSelf,
PTASKREC pNew,
PTASKREC pOld);
typedef somTP_WPHwManagerEx_wpSetTaskRec *somTD_WPHwManagerEx_wpSetTaskRec;
typedef PTASKREC SOMLINK somTP_WPHwManagerEx_wpFindTaskRec(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpFindTaskRec *somTD_WPHwManagerEx_wpFindTaskRec;
typedef PSZ SOMLINK somTP_WPHwManagerEx_wpQueryTitle(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryTitle *somTD_WPHwManagerEx_wpQueryTitle;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRegisterView(WPHwManagerEx *somSelf,
HWND hwndFrame,
PSZ pszViewTitle);
typedef somTP_WPHwManagerEx_wpRegisterView *somTD_WPHwManagerEx_wpRegisterView;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpReleaseObjectMutexSem(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpReleaseObjectMutexSem *somTD_WPHwManagerEx_wpReleaseObjectMutexSem;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpRequestObjectMutexSem(WPHwManagerEx *somSelf,
ULONG ulTimeout);
typedef somTP_WPHwManagerEx_wpRequestObjectMutexSem *somTD_WPHwManagerEx_wpRequestObjectMutexSem;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestore(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpRestore *somTD_WPHwManagerEx_wpRestore;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestoreData(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
PBYTE pValue,
PULONG pcbValue);
typedef somTP_WPHwManagerEx_wpRestoreData *somTD_WPHwManagerEx_wpRestoreData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestoreLong(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
PULONG pulValue);
typedef somTP_WPHwManagerEx_wpRestoreLong *somTD_WPHwManagerEx_wpRestoreLong;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpRestoreString(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
PSZ pszValue,
PULONG pcbValue);
typedef somTP_WPHwManagerEx_wpRestoreString *somTD_WPHwManagerEx_wpRestoreString;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveData(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
PBYTE pValue,
ULONG cbValue);
typedef somTP_WPHwManagerEx_wpSaveData *somTD_WPHwManagerEx_wpSaveData;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveDeferred(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpSaveDeferred *somTD_WPHwManagerEx_wpSaveDeferred;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveLong(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
ULONG ulValue);
typedef somTP_WPHwManagerEx_wpSaveLong *somTD_WPHwManagerEx_wpSaveLong;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSaveString(WPHwManagerEx *somSelf,
PSZ pszClass,
ULONG ulKey,
PSZ pszValue);
typedef somTP_WPHwManagerEx_wpSaveString *somTD_WPHwManagerEx_wpSaveString;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpScanSetupString(WPHwManagerEx *somSelf,
PSZ pszSetupString,
PSZ pszKey,
PSZ pszValue,
PULONG pcbValue);
typedef somTP_WPHwManagerEx_wpScanSetupString *somTD_WPHwManagerEx_wpScanSetupString;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetConcurrentView(WPHwManagerEx *somSelf,
ULONG ulCCView);
typedef somTP_WPHwManagerEx_wpSetConcurrentView *somTD_WPHwManagerEx_wpSetConcurrentView;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetButtonAppearance(WPHwManagerEx *somSelf,
ULONG ulButtonType);
typedef somTP_WPHwManagerEx_wpSetButtonAppearance *somTD_WPHwManagerEx_wpSetButtonAppearance;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetDefaultHelp(WPHwManagerEx *somSelf,
ULONG HelpPanelId,
PSZ HelpLibrary);
typedef somTP_WPHwManagerEx_wpSetDefaultHelp *somTD_WPHwManagerEx_wpSetDefaultHelp;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetDefaultView(WPHwManagerEx *somSelf,
ULONG ulView);
typedef somTP_WPHwManagerEx_wpSetDefaultView *somTD_WPHwManagerEx_wpSetDefaultView;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetError(WPHwManagerEx *somSelf,
ULONG ulErrorId);
typedef somTP_WPHwManagerEx_wpSetError *somTD_WPHwManagerEx_wpSetError;
typedef SGID SOMLINK somTP_WPHwManagerEx_wpQueryScreenGroupID(WPHwManagerEx *somSelf,
SGID sgidPrevSgId);
typedef somTP_WPHwManagerEx_wpQueryScreenGroupID *somTD_WPHwManagerEx_wpQueryScreenGroupID;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetIcon(WPHwManagerEx *somSelf,
HPOINTER hptrNewIcon);
typedef somTP_WPHwManagerEx_wpSetIcon *somTD_WPHwManagerEx_wpSetIcon;
typedef void SOMLINK somTP_WPHwManagerEx_wpSetMinWindow(WPHwManagerEx *somSelf,
ULONG ulMinWindow);
typedef somTP_WPHwManagerEx_wpSetMinWindow *somTD_WPHwManagerEx_wpSetMinWindow;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpModifyStyle(WPHwManagerEx *somSelf,
ULONG ulStyleFlags,
ULONG ulStyleMask);
typedef somTP_WPHwManagerEx_wpModifyStyle *somTD_WPHwManagerEx_wpModifyStyle;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryTrueStyle(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryTrueStyle *somTD_WPHwManagerEx_wpQueryTrueStyle;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpUnlockObject(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpUnlockObject *somTD_WPHwManagerEx_wpUnlockObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsObjectInitialized(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpIsObjectInitialized *somTD_WPHwManagerEx_wpIsObjectInitialized;
typedef WPObject* SOMLINK somTP_WPHwManagerEx_wpCreateShadowObjectExt(WPHwManagerEx *somSelf,
WPFolder* Folder,
BOOL fLock,
PSZ pszSetup,
M_WPObject* shadowClass);
typedef somTP_WPHwManagerEx_wpCreateShadowObjectExt *somTD_WPHwManagerEx_wpCreateShadowObjectExt;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpCnrDeleteUseItem(WPHwManagerEx *somSelf,
HWND hwndCnr);
typedef somTP_WPHwManagerEx_wpCnrDeleteUseItem *somTD_WPHwManagerEx_wpCnrDeleteUseItem;
typedef PMINIRECORDCORE SOMLINK somTP_WPHwManagerEx_wpQueryCoreRecord(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryCoreRecord *somTD_WPHwManagerEx_wpQueryCoreRecord;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetObjectID(WPHwManagerEx *somSelf,
PSZ pszObjectID);
typedef somTP_WPHwManagerEx_wpSetObjectID *somTD_WPHwManagerEx_wpSetObjectID;
typedef PSZ SOMLINK somTP_WPHwManagerEx_wpQueryObjectID(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryObjectID *somTD_WPHwManagerEx_wpQueryObjectID;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetDefaultIconPos(WPHwManagerEx *somSelf,
PPOINTL pPointl);
typedef somTP_WPHwManagerEx_wpSetDefaultIconPos *somTD_WPHwManagerEx_wpSetDefaultIconPos;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpQueryDefaultIconPos(WPHwManagerEx *somSelf,
PPOINTL pPointl);
typedef somTP_WPHwManagerEx_wpQueryDefaultIconPos *somTD_WPHwManagerEx_wpQueryDefaultIconPos;
typedef void SOMLINK somTP_WPHwManagerEx_wpCnrRefreshDetails(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpCnrRefreshDetails *somTD_WPHwManagerEx_wpCnrRefreshDetails;
typedef PVIEWITEM SOMLINK somTP_WPHwManagerEx_wpFindViewItem(WPHwManagerEx *somSelf,
ULONG flViews,
PVIEWITEM pCurrentItem);
typedef somTP_WPHwManagerEx_wpFindViewItem *somTD_WPHwManagerEx_wpFindViewItem;
typedef void SOMLINK somTP_WPHwManagerEx_wpLockObject(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpLockObject *somTD_WPHwManagerEx_wpLockObject;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpIsLocked(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpIsLocked *somTD_WPHwManagerEx_wpIsLocked;
typedef PULONG SOMLINK somTP_WPHwManagerEx_wpQueryContainerFlagPtr(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryContainerFlagPtr *somTD_WPHwManagerEx_wpQueryContainerFlagPtr;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpWaitForClose(WPHwManagerEx *somSelf,
LHANDLE lhView,
ULONG ulViews,
long lTimeOut,
BOOL bAutoClose);
typedef somTP_WPHwManagerEx_wpWaitForClose *somTD_WPHwManagerEx_wpWaitForClose;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetMenuStyle(WPHwManagerEx *somSelf,
ULONG ulStyle);
typedef somTP_WPHwManagerEx_wpSetMenuStyle *somTD_WPHwManagerEx_wpSetMenuStyle;
typedef ULONG SOMLINK somTP_WPHwManagerEx_wpQueryMenuStyle(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_wpQueryMenuStyle *somTD_WPHwManagerEx_wpQueryMenuStyle;
typedef BOOL SOMLINK somTP_WPHwManagerEx_wpSetStyle(WPHwManagerEx *somSelf,
ULONG ulNewStyle);
typedef somTP_WPHwManagerEx_wpSetStyle *somTD_WPHwManagerEx_wpSetStyle;
typedef void SOMLINK somTP_WPHwManagerEx_somInit(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somInit *somTD_WPHwManagerEx_somInit;
typedef void SOMLINK somTP_WPHwManagerEx_somUninit(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somUninit *somTD_WPHwManagerEx_somUninit;
typedef void SOMLINK somTP_WPHwManagerEx_somDefaultCopyInit(WPHwManagerEx *somSelf,
som3InitCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultCopyInit *somTD_WPHwManagerEx_somDefaultCopyInit;
typedef WPHwManagerEx* SOMLINK somTP_WPHwManagerEx_somDefaultAssign(WPHwManagerEx *somSelf,
som3AssignCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultAssign *somTD_WPHwManagerEx_somDefaultAssign;
typedef void SOMLINK somTP_WPHwManagerEx_somDefaultConstCopyInit(WPHwManagerEx *somSelf,
som3InitCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultConstCopyInit *somTD_WPHwManagerEx_somDefaultConstCopyInit;
typedef void SOMLINK somTP_WPHwManagerEx_somDefaultVCopyInit(WPHwManagerEx *somSelf,
som3InitCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultVCopyInit *somTD_WPHwManagerEx_somDefaultVCopyInit;
typedef void SOMLINK somTP_WPHwManagerEx_somDefaultConstVCopyInit(WPHwManagerEx *somSelf,
som3InitCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultConstVCopyInit *somTD_WPHwManagerEx_somDefaultConstVCopyInit;
typedef WPHwManagerEx* SOMLINK somTP_WPHwManagerEx_somDefaultConstAssign(WPHwManagerEx *somSelf,
som3AssignCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultConstAssign *somTD_WPHwManagerEx_somDefaultConstAssign;
typedef WPHwManagerEx* SOMLINK somTP_WPHwManagerEx_somDefaultVAssign(WPHwManagerEx *somSelf,
som3AssignCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultVAssign *somTD_WPHwManagerEx_somDefaultVAssign;
typedef WPHwManagerEx* SOMLINK somTP_WPHwManagerEx_somDefaultConstVAssign(WPHwManagerEx *somSelf,
som3AssignCtrl* ctrl,
SOMObject* fromObj);
typedef somTP_WPHwManagerEx_somDefaultConstVAssign *somTD_WPHwManagerEx_somDefaultConstVAssign;
typedef void SOMLINK somTP_WPHwManagerEx_somFree(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somFree *somTD_WPHwManagerEx_somFree;
typedef M_WPHwManagerEx* SOMLINK somTP_WPHwManagerEx_somGetClass(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somGetClass *somTD_WPHwManagerEx_somGetClass;
typedef string SOMLINK somTP_WPHwManagerEx_somGetClassName(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somGetClassName *somTD_WPHwManagerEx_somGetClassName;
typedef long SOMLINK somTP_WPHwManagerEx_somGetSize(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somGetSize *somTD_WPHwManagerEx_somGetSize;
typedef boolean SOMLINK somTP_WPHwManagerEx_somIsA(WPHwManagerEx *somSelf,
SOMClass* aClassObj);
typedef somTP_WPHwManagerEx_somIsA *somTD_WPHwManagerEx_somIsA;
typedef boolean SOMLINK somTP_WPHwManagerEx_somIsInstanceOf(WPHwManagerEx *somSelf,
SOMClass* aClassObj);
typedef somTP_WPHwManagerEx_somIsInstanceOf *somTD_WPHwManagerEx_somIsInstanceOf;
typedef boolean SOMLINK somTP_WPHwManagerEx_somRespondsTo(WPHwManagerEx *somSelf,
somId mId);
typedef somTP_WPHwManagerEx_somRespondsTo *somTD_WPHwManagerEx_somRespondsTo;
typedef boolean SOMLINK somTP_WPHwManagerEx_somDispatch(WPHwManagerEx *somSelf,
somToken* retValue,
somId methodId,
va_list ap);
typedef somTP_WPHwManagerEx_somDispatch *somTD_WPHwManagerEx_somDispatch;
typedef boolean SOMLINK somTP_WPHwManagerEx_somClassDispatch(WPHwManagerEx *somSelf,
SOMClass* clsObj,
somToken* retValue,
somId methodId,
va_list ap);
typedef somTP_WPHwManagerEx_somClassDispatch *somTD_WPHwManagerEx_somClassDispatch;
typedef boolean SOMLINK somTP_WPHwManagerEx_somCastObj(WPHwManagerEx *somSelf,
SOMClass* cls);
typedef somTP_WPHwManagerEx_somCastObj *somTD_WPHwManagerEx_somCastObj;
typedef boolean SOMLINK somTP_WPHwManagerEx_somResetObj(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somResetObj *somTD_WPHwManagerEx_somResetObj;
typedef void SOMLINK somTP_WPHwManagerEx_somDispatchV(WPHwManagerEx *somSelf,
somId methodId,
somId descriptor,
va_list ap);
typedef somTP_WPHwManagerEx_somDispatchV *somTD_WPHwManagerEx_somDispatchV;
typedef long SOMLINK somTP_WPHwManagerEx_somDispatchL(WPHwManagerEx *somSelf,
somId methodId,
somId descriptor,
va_list ap);
typedef somTP_WPHwManagerEx_somDispatchL *somTD_WPHwManagerEx_somDispatchL;
typedef void* SOMLINK somTP_WPHwManagerEx_somDispatchA(WPHwManagerEx *somSelf,
somId methodId,
somId descriptor,
va_list ap);
typedef somTP_WPHwManagerEx_somDispatchA *somTD_WPHwManagerEx_somDispatchA;
typedef double SOMLINK somTP_WPHwManagerEx_somDispatchD(WPHwManagerEx *somSelf,
somId methodId,
somId descriptor,
va_list ap);
typedef somTP_WPHwManagerEx_somDispatchD *somTD_WPHwManagerEx_somDispatchD;
typedef SOMObject* SOMLINK somTP_WPHwManagerEx_somPrintSelf(WPHwManagerEx *somSelf);
typedef somTP_WPHwManagerEx_somPrintSelf *somTD_WPHwManagerEx_somPrintSelf;
typedef void SOMLINK somTP_WPHwManagerEx_somDumpSelf(WPHwManagerEx *somSelf,
long level);
typedef somTP_WPHwManagerEx_somDumpSelf *somTD_WPHwManagerEx_somDumpSelf;
typedef void SOMLINK somTP_WPHwManagerEx_somDumpSelfInt(WPHwManagerEx *somSelf,
long level);
typedef somTP_WPHwManagerEx_somDumpSelfInt *somTD_WPHwManagerEx_somDumpSelfInt;
}
#endif /* WPHwManagerEx_API */
/*
* -- This emitter treats Method Tokens as Thunks by default.
* -- Use the sc modifier "nothunks" to change this default
*/
#undef somresolve_
#define somresolve_(obj,mToken) ((somMethodProc*)((void)obj, mToken))
/*
* -- The C++ Wrapper Class for WPHwManagerEx
*/
class WPHwManagerEx : public WPHwManager
{
public:
// WPHwManagerEx::new creates the class object if necessary, and then uses somNewNoInit
// to allocate memory and create the object. Initialization is in ctors.
void *operator new(size_t)
{
if (!_WPHwManagerEx) WPHwManagerExNewClass(WPHwManagerEx_MajorVersion,WPHwManagerEx_MinorVersion);
return (void*)
SOM_Resolve(_WPHwManagerEx,SOMClass,somNewNoInit)
((SOMClass *)((void*)_WPHwManagerEx));
}
// WPHwManagerEx::delete uses somDestruct.
void operator delete(void * obj)
{
if (obj && *(void**)obj) {
SOM_Resolve(obj,SOMObject,somFree)
((SOMObject*)obj);
}
}
WPHwManagerEx& operator=(WPHwManagerEx& fromObj)
{
this->somDefaultAssign(0,(SOMObject*)((void*)&fromObj));
return *this;
}
WPHwManagerEx()
{
if (*(void**)this !=
((somParentMtabStructPtr)
(WPHwManagerExCClassData.parentMtab))->mtab)
return;
((SOMObject*)((void*)this))->somDefaultInit(0);
}
WPHwManagerEx(WPHwManagerEx* fromObj)
{
if (*(void**)this !=
((somParentMtabStructPtr)
(WPHwManagerExCClassData.parentMtab))->mtab)
return;
((SOMObject*)((void*)this))->somDefaultCopyInit(0,((SOMObject*)((void*)fromObj)));
}
#ifdef __IBMCPP__
#pragma info(nocnv,nopar)
#endif
WPHwManagerEx(const WPHwManagerEx* fromObj)
{
if (*(void**)this !=
((somParentMtabStructPtr)
(WPHwManagerExCClassData.parentMtab))->mtab)
return;
((SOMObject*)((void*)this))->somDefaultConstCopyInit(0,((SOMObject*)((void*)fromObj)));
}
#ifdef __IBMCPP__
#pragma info(restore)
#endif
/*
* Reintroduce inherited methods
*/
/* method: wpAddSnoop1Page */
ULONG wpAddSnoop1Page(HWND hwndNotebook)
{
return SOM_ResolveD(this,WPHwManagerEx,WPHwManager,wpAddSnoop1Page)
(this,hwndNotebook);
}
/* method: wpAddSettingsPages */
BOOL wpAddSettingsPages(HWND hwndNotebook)
{
return SOM_ResolveD(this,WPHwManagerEx,WPObject,wpAddSettingsPages)
(this,hwndNotebook);
}