1 | /* $Id: shellguid.cpp,v 1.1 1999-10-09 11:13:24 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Win32 SHELL32 for OS/2
|
---|
5 | *
|
---|
6 | * Copyright 1997 Marcus Meissner
|
---|
7 | * Copyright 1999 Patrick Haller (haller@zebra.fh-weingarten.de)
|
---|
8 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
9 | *
|
---|
10 | */
|
---|
11 |
|
---|
12 | /*
|
---|
13 | * Shell UID
|
---|
14 | *
|
---|
15 | * 1998 Juergen Schmied (jsch) * <juergen.schmied@metronet.de>
|
---|
16 | *
|
---|
17 | * this in in a single file due to interfering definitions
|
---|
18 | *
|
---|
19 | */
|
---|
20 |
|
---|
21 |
|
---|
22 | /*****************************************************************************
|
---|
23 | * Includes *
|
---|
24 | *****************************************************************************/
|
---|
25 |
|
---|
26 | #include <odin.h>
|
---|
27 | #include <odinwrap.h>
|
---|
28 |
|
---|
29 | #define ICOM_CINTERFACE 1
|
---|
30 | #define CINTERFACE 1
|
---|
31 | #define INITGUID
|
---|
32 |
|
---|
33 | #include <os2win.h>
|
---|
34 | #include <shlguid.h>
|
---|
35 | #include <wine/obj_oleview.h>
|
---|
36 | #include <wine/obj_dragdrop.h>
|
---|
37 | #include <wine/obj_inplace.h>
|
---|
38 | #include <wine/obj_control.h>
|
---|
39 | #include <wine/obj_shellfolder.h>
|
---|
40 | #include <wine/obj_shelllink.h>
|
---|
41 | #include <wine/obj_contextmenu.h>
|
---|
42 | #include <wine/obj_commdlgbrowser.h>
|
---|
43 | #include <wine/obj_extracticon.h>
|
---|
44 | #include <wine/obj_shellextinit.h>
|
---|
45 | #include <docobj.h>
|
---|
46 |
|
---|
47 | /*
|
---|
48 | * Francis Beaudet <francis@macadamian.com>
|
---|
49 | *
|
---|
50 | * I moved the contents of this file to the ole/guid.c file.
|
---|
51 | *
|
---|
52 | * I know that the purpose of this file being here is that it would
|
---|
53 | * separate the definitions reserved to the shell DLL into one place. *
|
---|
54 | However, until the shell DLL is a real DLL, as long as it is *
|
---|
55 | statically linked with the rest of wine, the initializer of it's * GUIDs
|
---|
56 | will have to be in the same place as everybody else. This is * the same
|
---|
57 | problem as with "real" Windows programs. */
|
---|
58 |
|
---|
59 | ODINDEBUGCHANNEL(SHELL32-SHELLGUID)
|
---|
60 |
|
---|
61 |
|
---|