root/trunk/win32/cguid.d

Revision 155, 2.4 kB (checked in by Don Clugston, 2 years ago)

Committed on behalf of Stewart.

Line 
1 /***********************************************************************\
2 *                                cguid.d                                *
3 *                                                                       *
4 *                       Windows API header module                       *
5 *                                                                       *
6 *                 Translated from MinGW Windows headers                 *
7 *                                                                       *
8 *                       Placed into public domain                       *
9 \***********************************************************************/
10 module win32.cguid;
11
12 private import win32.basetyps;
13
14 extern (C) {
15     extern const IID
16         GUID_NULL,
17         IID_IRpcChannel,
18         IID_IRpcStub,
19         IID_IStubManager,
20         IID_IRpcProxy,
21         IID_IProxyManager,
22         IID_IPSFactory,
23         IID_IInternalMoniker,
24         IID_IDfReserved1,
25         IID_IDfReserved2,
26         IID_IDfReserved3,
27         IID_IStub,
28         IID_IProxy,
29         IID_IEnumGeneric,
30         IID_IEnumHolder,
31         IID_IEnumCallback,
32         IID_IOleManager,
33         IID_IOlePresObj,
34         IID_IDebug,
35         IID_IDebugStream;
36
37     extern const CLSID
38         CLSID_StdMarshal,
39         CLSID_PSGenObject,
40         CLSID_PSClientSite,
41         CLSID_PSClassObject,
42         CLSID_PSInPlaceActive,
43         CLSID_PSInPlaceFrame,
44         CLSID_PSDragDrop,
45         CLSID_PSBindCtx,
46         CLSID_PSEnumerators,
47         CLSID_StaticMetafile,
48         CLSID_StaticDib,
49
50         CID_CDfsVolume,
51
52         CLSID_CCDFormKrnl,
53         CLSID_CCDPropertyPage,
54         CLSID_CCDFormDialog,
55         CLSID_CCDCommandButton,
56         CLSID_CCDComboBox,
57         CLSID_CCDTextBox,
58         CLSID_CCDCheckBox,
59         CLSID_CCDLabel,
60         CLSID_CCDOptionButton,
61         CLSID_CCDListBox,
62         CLSID_CCDScrollBar,
63         CLSID_CCDGroupBox,
64         CLSID_CCDGeneralPropertyPage,
65         CLSID_CCDGenericPropertyPage,
66         CLSID_CCDFontPropertyPage,
67         CLSID_CCDColorPropertyPage,
68         CLSID_CCDLabelPropertyPage,
69         CLSID_CCDCheckBoxPropertyPage,
70         CLSID_CCDTextBoxPropertyPage,
71         CLSID_CCDOptionButtonPropertyPage,
72         CLSID_CCDListBoxPropertyPage,
73         CLSID_CCDCommandButtonPropertyPage,
74         CLSID_CCDComboBoxPropertyPage,
75         CLSID_CCDScrollBarPropertyPage,
76         CLSID_CCDGroupBoxPropertyPage,
77         CLSID_CCDXObjectPropertyPage,
78         CLSID_CStdPropertyFrame,
79         CLSID_CFormPropertyPage,
80         CLSID_CGridPropertyPage,
81         CLSID_CWSJArticlePage,
82         CLSID_CSystemPage,
83         CLSID_IdentityUnmarshal,
84         CLSID_InProcFreeMarshaler,
85         CLSID_Picture_Metafile,
86         CLSID_Picture_EnhMetafile,
87         CLSID_Picture_Dib,
88         CLSID_StdGlobalInterfaceTable;
89
90     extern const GUID GUID_TRISTATE;
91 }
Note: See TracBrowser for help on using the browser.