1 | /* $Id: guid.c,v 1.7 2002-06-15 12:22:55 sandervl Exp $ */
|
---|
2 | #define ICOM_CINTERFACE 1
|
---|
3 | #include <odin.h>
|
---|
4 |
|
---|
5 | #define CINTERFACE 1
|
---|
6 | #define INITGUID
|
---|
7 | #include <wine\obj_oleview.h>
|
---|
8 | #include "initguid.h"
|
---|
9 |
|
---|
10 | #include "shlwapi.h"
|
---|
11 | #include "shlguid.h"
|
---|
12 | #include "shlobj.h"
|
---|
13 | #include "docobj.h"
|
---|
14 | #include "olectl.h"
|
---|
15 | #include "dinput.h"
|
---|
16 | //#include "..\shell32\shellfolder.h"
|
---|
17 |
|
---|
18 | #include "wine/obj_inplace.h"
|
---|
19 | #include "wine/obj_oleobj.h"
|
---|
20 | #include "wine/obj_surrogate.h"
|
---|
21 | #include "wine/obj_errorinfo.h"
|
---|
22 | #include "wine/obj_oleview.h"
|
---|
23 | #include "wine/obj_clientserver.h"
|
---|
24 | #include "wine/obj_cache.h"
|
---|
25 | #include "wine\obj_oleaut.h"
|
---|
26 | #include "wine\obj_olefont.h"
|
---|
27 |
|
---|
28 | #include <wine/obj_oleview.h>
|
---|
29 | #include <wine/obj_dragdrop.h>
|
---|
30 | #include <wine/obj_inplace.h>
|
---|
31 | #include <wine/obj_channel.h>
|
---|
32 | #include <wine/obj_marshal.h>
|
---|
33 | #include <wine/obj_control.h>
|
---|
34 | #include <wine/obj_shellfolder.h>
|
---|
35 | #include <wine/obj_shelllink.h>
|
---|
36 | #include <wine/obj_contextmenu.h>
|
---|
37 | #include <wine/obj_commdlgbrowser.h>
|
---|
38 | #include <wine/obj_extracticon.h>
|
---|
39 | #include <wine/obj_shellextinit.h>
|
---|
40 | #include <wine/obj_shellbrowser.h>
|
---|
41 | #include <wine/obj_serviceprovider.h>
|
---|
42 | #include <wine/obj_queryassociations.h>
|
---|
43 | #include <wine/unicode.h>
|
---|
44 |
|
---|
45 |
|
---|
46 | #include <misc.h>
|
---|
47 |
|
---|
48 | DEFINE_GUID(IID_ISFHelper, 0x1fe68efbL, 0x1874, 0x9812, 0x56, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
|
---|
49 | DEFINE_GUID(GUID_NULL, 0,0,0,0,0,0,0,0,0,0,0);
|
---|
50 |
|
---|
51 | #define DEFINE_AVIGUID(name, l, w1, w2) \
|
---|
52 | DEFINE_GUID(name, l, w1, w2, 0xC0,0,0,0,0,0,0,0x46)
|
---|
53 |
|
---|
54 | DEFINE_AVIGUID(IID_IAVIFile, 0x00020020, 0, 0);
|
---|
55 | DEFINE_AVIGUID(IID_IAVIStream, 0x00020021, 0, 0);
|
---|
56 | DEFINE_AVIGUID(IID_IAVIStreaming, 0x00020022, 0, 0);
|
---|
57 | DEFINE_AVIGUID(IID_IGetFrame, 0x00020023, 0, 0);
|
---|
58 | DEFINE_AVIGUID(IID_IAVIEditStream, 0x00020024, 0, 0);
|
---|
59 |
|
---|
60 | DEFINE_AVIGUID(CLSID_AVIFile, 0x00020000, 0, 0);
|
---|