Use GUIDs from itss.idl.
This commit is contained in:
parent
e8855c48d8
commit
fd2b4986a8
|
@ -35,7 +35,6 @@
|
||||||
#include "winreg.h"
|
#include "winreg.h"
|
||||||
#include "ole2.h"
|
#include "ole2.h"
|
||||||
|
|
||||||
#include "itss.h"
|
|
||||||
#include "uuids.h"
|
#include "uuids.h"
|
||||||
|
|
||||||
#include "wine/unicode.h"
|
#include "wine/unicode.h"
|
||||||
|
@ -43,14 +42,13 @@
|
||||||
|
|
||||||
#include "itsstor.h"
|
#include "itsstor.h"
|
||||||
|
|
||||||
|
#define ITSS_INITGUID
|
||||||
|
#include "itss.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
WINE_DEFAULT_DEBUG_CHANNEL(itss);
|
||||||
|
|
||||||
#include "initguid.h"
|
#include "initguid.h"
|
||||||
|
|
||||||
DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec );
|
|
||||||
DEFINE_GUID(CLSID_ITSProtocol,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);
|
|
||||||
DEFINE_GUID(IID_IITStorage, 0x88cc31de, 0x27ab, 0x11d0, 0x9d, 0xf9, 0x0, 0xa0, 0xc9, 0x22, 0xe6, 0xec);
|
|
||||||
|
|
||||||
static HRESULT ITSS_create(IUnknown *pUnkOuter, LPVOID *ppObj);
|
static HRESULT ITSS_create(IUnknown *pUnkOuter, LPVOID *ppObj);
|
||||||
|
|
||||||
ULONG dll_count = 0;
|
ULONG dll_count = 0;
|
||||||
|
|
|
@ -18,6 +18,10 @@
|
||||||
|
|
||||||
import "oaidl.idl";
|
import "oaidl.idl";
|
||||||
|
|
||||||
|
cpp_quote("#ifdef ITSS_INITGUID")
|
||||||
|
cpp_quote("#include \"initguid.h\"")
|
||||||
|
cpp_quote("#endif")
|
||||||
|
|
||||||
typedef struct _ITS_Control_Data
|
typedef struct _ITS_Control_Data
|
||||||
{
|
{
|
||||||
UINT cdwControlData;
|
UINT cdwControlData;
|
||||||
|
@ -90,3 +94,4 @@ interface IITStorage : IUnknown
|
||||||
|
|
||||||
cpp_quote("DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec );");
|
cpp_quote("DEFINE_GUID(CLSID_ITStorage,0x5d02926a,0x212e,0x11d0,0x9d,0xf9,0x00,0xa0,0xc9,0x22,0xe6,0xec );");
|
||||||
cpp_quote("DEFINE_GUID(IID_IITStorage, 0x88cc31de, 0x27ab, 0x11d0, 0x9d, 0xf9, 0x0, 0xa0, 0xc9, 0x22, 0xe6, 0xec);");
|
cpp_quote("DEFINE_GUID(IID_IITStorage, 0x88cc31de, 0x27ab, 0x11d0, 0x9d, 0xf9, 0x0, 0xa0, 0xc9, 0x22, 0xe6, 0xec);");
|
||||||
|
cpp_quote("DEFINE_GUID(CLSID_ITSProtocol,0x9d148290,0xb9c8,0x11d0,0xa4,0xcc,0x00,0x00,0xf8,0x01,0x49,0xf6);");
|
||||||
|
|
Loading…
Reference in New Issue