~mingw-w64/mingw-w64/experimental

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
/* Automated generated idl file <adox>.
 * Generated by genidl tool (c) 2009, 2010 Mingw-w64 project.
 */

/* Union record forward declarations.  */
dispinterface _Collection;
dispinterface _DynaCollection;
dispinterface _Catalog;
dispinterface Tables;
dispinterface _Table;
dispinterface Columns;
dispinterface _Column;
dispinterface Properties;
dispinterface Property;
dispinterface Indexes;
dispinterface _Index;
dispinterface Keys;
dispinterface _Key;
dispinterface Procedures;
dispinterface Procedure;
dispinterface Views;
dispinterface View;
dispinterface Groups;
dispinterface _Group;
dispinterface _Group25;
dispinterface Users;
dispinterface _User;
dispinterface _User25;

/* Union record forward declarations.  */
coclass Table;
coclass Column;
coclass Index;
coclass Key;
coclass Group;
coclass User;
coclass Catalog;

/* Enumeration declarations.  */
enum ColumnAttributesEnum
{
  adColFixed = (int) 201326593,
  adColNullable = (int) 201326594
};
enum SortOrderEnum
{
  adSortAscending = (int) 201326593,
  adSortDescending = (int) 201326594
};
enum DataTypeEnum
{
  adEmpty = (int) 201326592,
  adTinyInt = (int) 201326608,
  adSmallInt = (int) 201326594,
  adInteger = (int) 201326595,
  adBigInt = (int) 201326612,
  adUnsignedTinyInt = (int) 201326609,
  adUnsignedSmallInt = (int) 201326610,
  adUnsignedInt = (int) 201326611,
  adUnsignedBigInt = (int) 201326613,
  adSingle = (int) 201326596,
  adDouble = (int) 201326597,
  adCurrency = (int) 201326598,
  adDecimal = (int) 201326606,
  adNumeric = (int) 201326723,
  adBoolean = (int) 201326603,
  adError = (int) 201326602,
  adUserDefined = (int) 201326724,
  adVariant = (int) 201326604,
  adIDispatch = (int) 201326601,
  adIUnknown = (int) 201326605,
  adGUID = (int) 201326664,
  adDate = (int) 201326599,
  adDBDate = (int) 201326725,
  adDBTime = (int) 201326726,
  adDBTimeStamp = (int) 201326727,
  adBSTR = (int) 201326600,
  adChar = (int) 201326721,
  adVarChar = (int) 201326792,
  adLongVarChar = (int) 201326793,
  adWChar = (int) 201326722,
  adVarWChar = (int) 201326794,
  adLongVarWChar = (int) 201326795,
  adBinary = (int) 201326720,
  adVarBinary = (int) 201326796,
  adLongVarBinary = (int) 201326797,
  adChapter = (int) 201326728,
  adFileTime = (int) 201326656,
  adPropVariant = (int) 201326730,
  adVarNumeric = (int) 201326731
};
enum AllowNullsEnum
{
  adIndexNullsAllow = (int) 201326592,
  adIndexNullsDisallow = (int) 201326593,
  adIndexNullsIgnore = (int) 201326594,
  adIndexNullsIgnoreAny = (int) 201326596
};
enum RuleEnum
{
  adRINone = (int) 201326592,
  adRICascade = (int) 201326593,
  adRISetNull = (int) 201326594,
  adRISetDefault = (int) 201326595
};
enum KeyTypeEnum
{
  adKeyPrimary = (int) 201326593,
  adKeyForeign = (int) 201326594,
  adKeyUnique = (int) 201326595
};
enum ObjectTypeEnum
{
  adPermObjProviderSpecific = (int) -1,
  adPermObjTable = (int) 201326593,
  adPermObjColumn = (int) 201326594,
  adPermObjDatabase = (int) 201326595,
  adPermObjProcedure = (int) 201326596,
  adPermObjView = (int) 201326597
};
enum RightsEnum
{
  adRightNone = (int) 201326592,
  adRightDrop = (int) 201326848,
  adRightExclusive = (int) 201327104,
  adRightReadDesign = (int) 201327616,
  adRightWriteDesign = (int) 201328640,
  adRightWithGrant = (int) 201330688,
  adRightReference = (int) 201334784,
  adRightCreate = (int) 201342976,
  adRightInsert = (int) 201359360,
  adRightDelete = (int) 201392128,
  adRightReadPermissions = (int) 201457664,
  adRightWritePermissions = (int) 201588736,
  adRightWriteOwner = (int) 201850880,
  adRightMaximumAllowed = (int) 234881024,
  adRightFull = (int) 268435456,
  adRightExecute = (int) 536870912,
  adRightUpdate = (int) 1073741824,
  adRightRead = (int) -2147483648
};
enum ActionEnum
{
  adAccessGrant = (int) 201326593,
  adAccessSet = (int) 201326594,
  adAccessDeny = (int) 201326595,
  adAccessRevoke = (int) 201326596
};
enum InheritTypeEnum
{
  adInheritNone = (int) 201326592,
  adInheritObjects = (int) 201326593,
  adInheritContainers = (int) 201326594,
  adInheritBoth = (int) 201326595,
  adInheritNoPropogate = (int) 201326596
};

[
  uuid(00000600-0000-0010-8000-00AA006D2EA4),
  version(6.0),
  helpstring("Microsoft ADO Ext. 6.0 for DDL and Security"),
  helpfile("ado270.chm")
]
library adox
{
  importlib("stdole2.tlb");

   /* CoClass declarations.  */
   [
     uuid(00000609-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Table
   {
     dispinterface _Table;
   };
   [
     uuid(0000061B-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Column
   {
     dispinterface _Column;
   };
   [
     uuid(0000061E-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Index
   {
     dispinterface _Index;
   };
   [
     uuid(00000621-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Key
   {
     dispinterface _Key;
   };
   [
     uuid(00000615-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Group
   {
     dispinterface _Group;
   };
   [
     uuid(00000618-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass User
   {
     dispinterface _User;
   };
   [
     uuid(00000602-0000-0010-8000-00AA006D2EA4),
     cancreate
   ]
   coclass Catalog
   {
     dispinterface _Catalog;
   };

   /* Dispatch interface declarations.  */
   [
     uuid(00000512-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Collection : IDispatch
   {
     [id(1610743808), propget]
     HRESULT __stdcall Count (
       [out retval] long *c
     );
     [id(-4), restricted]
     HRESULT __stdcall _NewEnum (
       [out retval] IUnknown **ppvObject
     );
     [id(1610743810)]
     HRESULT __stdcall Refresh (void);
   };
   [
     uuid(00000513-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _DynaCollection : _Collection
   {
     [id(1610809344)]
     HRESULT __stdcall Append (
       [in] IDispatch * Object
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000603-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Catalog : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Tables (
       [out retval] dispinterface Tables **ppvObject
     );
     [propget]
     HRESULT __stdcall ActiveConnection (
       [out retval] VARIANT *pVal
     );
     [id(1), propput]
     HRESULT __stdcall ActiveConnection (
       [in] VARIANT argNo1
     );
     [id(1), propputref]
     HRESULT __stdcall ActiveConnection (
       [in] IDispatch * argNo1
     );
     [propget]
     HRESULT __stdcall Procedures (
       [out retval] dispinterface Procedures **ppvObject
     );
     [propget]
     HRESULT __stdcall Views (
       [out retval] dispinterface Views **ppvObject
     );
     [propget]
     HRESULT __stdcall Groups (
       [out retval] dispinterface Groups **ppvObject
     );
     [propget]
     HRESULT __stdcall Users (
       [out retval] dispinterface Users **ppvObject
     );
     HRESULT __stdcall Create (
       [in] BSTR ConnectString,
       [out retval] VARIANT *Connection
     );
     HRESULT __stdcall GetObjectOwner (
       [in] BSTR ObjectName,
       [in] enum ObjectTypeEnum ObjectType,
       [in opt] VARIANT ObjectTypeId,
       [out retval] BSTR *OwnerName
     );
     HRESULT __stdcall SetObjectOwner (
       [in] BSTR ObjectName,
       [in] enum ObjectTypeEnum ObjectType,
       [in] BSTR UserName,
       [in opt] VARIANT ObjectTypeId
     );
   };
   [
     uuid(00000611-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Tables : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass Table **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000610-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Table : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Columns (
       [out retval] dispinterface Columns **ppvObject
     );
     [propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(1), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall Type (
       [out retval] BSTR *pVal
     );
     [propget]
     HRESULT __stdcall Indexes (
       [out retval] dispinterface Indexes **ppvObject
     );
     [propget]
     HRESULT __stdcall Keys (
       [out retval] dispinterface Keys **ppvObject
     );
     [propget]
     HRESULT __stdcall Properties (
       [out retval] dispinterface Properties **ppvObject
     );
     [propget]
     HRESULT __stdcall DateCreated (
       [out retval] VARIANT *pVal
     );
     [propget]
     HRESULT __stdcall DateModified (
       [out retval] VARIANT *pVal
     );
     [propget]
     HRESULT __stdcall ParentCatalog (
       [out retval] dispinterface _Catalog **ppvObject
     );
     [id(8), propput]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
     [id(8), propputref]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
   };
   [
     uuid(0000061D-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Columns : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass Column **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item,
       [in opt] enum DataTypeEnum Type = (int) 201326794,
       [in opt] long DefinedSize = (int) 201326592
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(0000061C-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Column : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall Attributes (
       [out retval] enum ColumnAttributesEnum *pVal
     );
     [id(1), propput]
     HRESULT __stdcall Attributes (
       [in] enum ColumnAttributesEnum argNo1
     );
     [id(3), propget]
     HRESULT __stdcall DefinedSize (
       [out retval] long *pVal
     );
     [id(3), propput]
     HRESULT __stdcall DefinedSize (
       [in] long argNo1
     );
     [propget]
     HRESULT __stdcall NumericScale (
       [out retval] UCHAR *pVal
     );
     [id(4), propput]
     HRESULT __stdcall NumericScale (
       [in] UCHAR argNo1
     );
     [propget]
     HRESULT __stdcall Precision (
       [out retval] long *pVal
     );
     [id(5), propput]
     HRESULT __stdcall Precision (
       [in] long argNo1
     );
     [propget]
     HRESULT __stdcall RelatedColumn (
       [out retval] BSTR *pVal
     );
     [id(6), propput]
     HRESULT __stdcall RelatedColumn (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall SortOrder (
       [out retval] enum SortOrderEnum *pVal
     );
     [id(7), propput]
     HRESULT __stdcall SortOrder (
       [in] enum SortOrderEnum argNo1
     );
     [propget]
     HRESULT __stdcall Type (
       [out retval] enum DataTypeEnum *pVal
     );
     [id(8), propput]
     HRESULT __stdcall Type (
       [in] enum DataTypeEnum argNo1
     );
     [propget]
     HRESULT __stdcall Properties (
       [out retval] dispinterface Properties **ppvObject
     );
     [propget]
     HRESULT __stdcall ParentCatalog (
       [out retval] dispinterface _Catalog **ppvObject
     );
     [id(10), propput]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
     [id(10), propputref]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
   };
   [
     uuid(00000504-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Properties : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] dispinterface Property **ppvObject
     );
   };
   [
     uuid(00000503-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Property : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Value (
       [out retval] VARIANT *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Value (
       [in] VARIANT argNo1
     );
     [propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pbstr
     );
     [propget]
     HRESULT __stdcall Type (
       [out retval] enum DataTypeEnum *ptype
     );
     [propget]
     HRESULT __stdcall Attributes (
       [out retval] long *plAttributes
     );
     [id(3), propput]
     HRESULT __stdcall Attributes (
       [in] long argNo1
     );
   };
   [
     uuid(00000620-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Indexes : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass Index **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item,
       [in opt] VARIANT Columns
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(0000061F-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Index : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall Clustered (
       [out retval] WINBOOL *pVal
     );
     [id(1), propput]
     HRESULT __stdcall Clustered (
       [in] WINBOOL argNo1
     );
     [propget]
     HRESULT __stdcall IndexNulls (
       [out retval] enum AllowNullsEnum *pVal
     );
     [id(2), propput]
     HRESULT __stdcall IndexNulls (
       [in] enum AllowNullsEnum argNo1
     );
     [propget]
     HRESULT __stdcall PrimaryKey (
       [out retval] WINBOOL *pVal
     );
     [id(3), propput]
     HRESULT __stdcall PrimaryKey (
       [in] WINBOOL argNo1
     );
     [propget]
     HRESULT __stdcall Unique (
       [out retval] WINBOOL *pVal
     );
     [id(4), propput]
     HRESULT __stdcall Unique (
       [in] WINBOOL argNo1
     );
     [propget]
     HRESULT __stdcall Columns (
       [out retval] dispinterface Columns **ppvObject
     );
     [propget]
     HRESULT __stdcall Properties (
       [out retval] dispinterface Properties **ppvObject
     );
   };
   [
     uuid(00000623-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Keys : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass Key **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item,
       [in opt] enum KeyTypeEnum Type = (int) 201326593,
       [in opt] VARIANT Column,
       [in opt] BSTR RelatedTable = L"",
       [in opt] BSTR RelatedColumn = L""
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000622-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Key : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall DeleteRule (
       [out retval] enum RuleEnum *pVal
     );
     [id(1), propput]
     HRESULT __stdcall DeleteRule (
       [in] enum RuleEnum argNo1
     );
     [propget]
     HRESULT __stdcall Type (
       [out retval] enum KeyTypeEnum *pVal
     );
     [id(2), propput]
     HRESULT __stdcall Type (
       [in] enum KeyTypeEnum argNo1
     );
     [propget]
     HRESULT __stdcall RelatedTable (
       [out retval] BSTR *pVal
     );
     [id(3), propput]
     HRESULT __stdcall RelatedTable (
       [in] BSTR argNo1
     );
     [propget]
     HRESULT __stdcall UpdateRule (
       [out retval] enum RuleEnum *pVal
     );
     [id(4), propput]
     HRESULT __stdcall UpdateRule (
       [in] enum RuleEnum argNo1
     );
     [propget]
     HRESULT __stdcall Columns (
       [out retval] dispinterface Columns **ppvObject
     );
   };
   [
     uuid(00000626-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Procedures : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] dispinterface Procedure **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] BSTR Name,
       [in] IDispatch * Command
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000625-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Procedure : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Command (
       [out retval] VARIANT *pVar
     );
     [id(0), propput]
     HRESULT __stdcall Command (
       [in] VARIANT argNo1
     );
     [id(0), propputref]
     HRESULT __stdcall Command (
       [in] IDispatch * argNo1
     );
     [propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [propget]
     HRESULT __stdcall DateCreated (
       [out retval] VARIANT *pVal
     );
     [propget]
     HRESULT __stdcall DateModified (
       [out retval] VARIANT *pVal
     );
   };
   [
     uuid(00000614-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Views : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] dispinterface View **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] BSTR Name,
       [in] IDispatch * Command
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000613-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface View : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Command (
       [out retval] VARIANT *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Command (
       [in] VARIANT argNo1
     );
     [id(0), propputref]
     HRESULT __stdcall Command (
       [in] IDispatch * argNo1
     );
     [propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [propget]
     HRESULT __stdcall DateCreated (
       [out retval] VARIANT *pVal
     );
     [propget]
     HRESULT __stdcall DateModified (
       [out retval] VARIANT *pVal
     );
   };
   [
     uuid(00000617-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Groups : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass Group **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000628-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Group : _Group25
   {
     [id(5), propget]
     HRESULT __stdcall Properties (
       [out retval] dispinterface Properties **ppvObject
     );
     [propget]
     HRESULT __stdcall ParentCatalog (
       [out retval] dispinterface _Catalog **ppvObject
     );
     [id(6), propput]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
     [id(6), propputref]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
   };
   [
     uuid(00000616-0000-0010-8000-00AA006D2EA4),
     hidden,
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _Group25 : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [id(2)]
     HRESULT __stdcall GetPermissions (
       [in] VARIANT Name,
       [in] enum ObjectTypeEnum ObjectType,
       [in opt] VARIANT ObjectTypeId,
       [out retval] enum RightsEnum *Rights
     );
     HRESULT __stdcall SetPermissions (
       [in] VARIANT Name,
       [in] enum ObjectTypeEnum ObjectType,
       [in] enum ActionEnum Action,
       [in] enum RightsEnum Rights,
       [in opt] enum InheritTypeEnum Inherit = (int) 201326592,
       [in opt] VARIANT ObjectTypeId
     );
     [propget]
     HRESULT __stdcall Users (
       [out retval] dispinterface Users **ppvObject
     );
   };
   [
     uuid(0000061A-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface Users : _Collection
   {
     [id(0), propget]
     HRESULT __stdcall Item (
       [in] VARIANT Item,
       [out retval] coclass User **ppvObject
     );
     [id(1610809345)]
     HRESULT __stdcall Append (
       [in] VARIANT Item,
       [in opt] BSTR Password = L""
     );
     HRESULT __stdcall Delete (
       [in] VARIANT Item
     );
   };
   [
     uuid(00000627-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _User : _User25
   {
     [id(6), propget]
     HRESULT __stdcall Properties (
       [out retval] dispinterface Properties **ppvObject
     );
     [propget]
     HRESULT __stdcall ParentCatalog (
       [out retval] dispinterface _Catalog **ppvObject
     );
     [id(7), propput]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
     [id(7), propputref]
     HRESULT __stdcall ParentCatalog (
       [in] dispinterface _Catalog *argNo1
     );
   };
   [
     uuid(00000619-0000-0010-8000-00AA006D2EA4),
     dual,
     nonextensible,
     oleautomation,
     dispatchable
   ]
   dispinterface _User25 : IDispatch
   {
     [id(0), propget]
     HRESULT __stdcall Name (
       [out retval] BSTR *pVal
     );
     [id(0), propput]
     HRESULT __stdcall Name (
       [in] BSTR argNo1
     );
     [id(2)]
     HRESULT __stdcall GetPermissions (
       [in] VARIANT Name,
       [in] enum ObjectTypeEnum ObjectType,
       [in opt] VARIANT ObjectTypeId,
       [out retval] enum RightsEnum *Rights
     );
     HRESULT __stdcall SetPermissions (
       [in] VARIANT Name,
       [in] enum ObjectTypeEnum ObjectType,
       [in] enum ActionEnum Action,
       [in] enum RightsEnum Rights,
       [in opt] enum InheritTypeEnum Inherit = (int) 201326592,
       [in opt] VARIANT ObjectTypeId
     );
     HRESULT __stdcall ChangePassword (
       [in] BSTR OldPassword,
       [in] BSTR NewPassword
     );
     [propget]
     HRESULT __stdcall Groups (
       [out retval] dispinterface Groups **ppvObject
     );
   };

};