Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
70706091
Commit
70706091
authored
Jun 09, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Use the standard DEFINE_OLEGUID macro to define GUIDs.
parent
08295f4c
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
34 deletions
+11
-34
oleaut.c
dlls/oleaut32/oleaut.c
+0
-9
regsvr.c
dlls/oleaut32/regsvr.c
+2
-16
typelib.c
dlls/oleaut32/typelib.c
+0
-3
typelib.h
dlls/oleaut32/typelib.h
+8
-0
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+1
-6
No files found.
dlls/oleaut32/oleaut.c
View file @
70706091
...
...
@@ -38,15 +38,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
/* The OLE Automation ProxyStub Interface Class (aka Typelib Marshaler) */
extern
const
GUID
CLSID_PSOAInterface
;
extern
const
GUID
CLSID_PSDispatch
;
extern
const
GUID
CLSID_PSEnumVariant
;
extern
const
GUID
CLSID_PSTypeInfo
;
extern
const
GUID
CLSID_PSTypeLib
;
extern
const
GUID
CLSID_PSTypeComp
;
static
BOOL
BSTR_bCache
=
TRUE
;
/* Cache allocations to minimise alloc calls? */
HMODULE
OLEAUT32_hModule
=
NULL
;
...
...
dlls/oleaut32/regsvr.c
View file @
70706091
...
...
@@ -30,6 +30,8 @@
#include "ole2.h"
#include "olectl.h"
#include "oleauto.h"
#include "initguid.h"
#include "typelib.h"
#include "wine/debug.h"
...
...
@@ -443,22 +445,6 @@ static LONG recursive_delete_keyW(HKEY base, WCHAR const *name)
static
GUID
const
CLSID_RecordInfo
=
{
0x0000002F
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
extern
GUID
const
CLSID_PSDispatch
;
GUID
const
CLSID_PSEnumVariant
=
{
0x00020421
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
GUID
const
CLSID_PSTypeInfo
=
{
0x00020422
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
GUID
const
CLSID_PSTypeLib
=
{
0x00020423
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
GUID
const
CLSID_PSTypeComp
=
{
0x00020425
,
0x0000
,
0x0000
,
{
0xC0
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x46
}
};
extern
GUID
const
CLSID_PSOAInterface
;
static
GUID
const
CLSID_OldFont
=
{
0x46763EE0
,
0xCAB2
,
0x11CE
,
{
0x8C
,
0x20
,
0x00
,
0xAA
,
0x00
,
0x51
,
0xE5
,
0xD4
}
};
...
...
dlls/oleaut32/typelib.c
View file @
70706091
...
...
@@ -82,9 +82,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
WINE_DECLARE_DEBUG_CHANNEL
(
typelib
);
/* The OLE Automation ProxyStub Interface Class (aka Typelib Marshaler) */
const
GUID
CLSID_PSOAInterface
=
{
0x00020424
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
static
HRESULT
typedescvt_to_variantvt
(
ITypeInfo
*
tinfo
,
const
TYPEDESC
*
tdesc
,
VARTYPE
*
vt
);
static
HRESULT
TLB_AllocAndInitVarDesc
(
const
VARDESC
*
src
,
VARDESC
**
dest_ptr
);
...
...
dlls/oleaut32/typelib.h
View file @
70706091
...
...
@@ -607,5 +607,13 @@ extern void dump_Variant(const VARIANT * pvar);
HRESULT
TMARSHAL_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
);
/* The OLE Automation ProxyStub Interface Class (aka Typelib Marshaler) */
DEFINE_OLEGUID
(
CLSID_PSDispatch
,
0x00020420
,
0x0000
,
0x0000
);
DEFINE_OLEGUID
(
CLSID_PSEnumVariant
,
0x00020421
,
0x0000
,
0x0000
);
DEFINE_OLEGUID
(
CLSID_PSTypeInfo
,
0x00020422
,
0x0000
,
0x0000
);
DEFINE_OLEGUID
(
CLSID_PSTypeLib
,
0x00020423
,
0x0000
,
0x0000
);
DEFINE_OLEGUID
(
CLSID_PSOAInterface
,
0x00020424
,
0x0000
,
0x0000
);
DEFINE_OLEGUID
(
CLSID_PSTypeComp
,
0x00020425
,
0x0000
,
0x0000
);
/*---------------------------END--------------------------------------------*/
#endif
dlls/oleaut32/usrmarshal.c
View file @
70706091
...
...
@@ -35,6 +35,7 @@
#include "ole2.h"
#include "oleauto.h"
#include "rpcproxy.h"
#include "typelib.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
...
...
@@ -44,12 +45,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(ole);
#define ALIGN_LENGTH(_Len, _Align) _Len = ALIGNED_LENGTH(_Len, _Align)
#define ALIGN_POINTER(_Ptr, _Align) _Ptr = ALIGNED_POINTER(_Ptr, _Align)
/* FIXME: not supposed to be here */
const
CLSID
CLSID_PSDispatch
=
{
0x20420
,
0
,
0
,
{
0xC0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
static
CStdPSFactoryBuffer
PSFactoryBuffer
;
CSTDSTUBBUFFERRELEASE
(
&
PSFactoryBuffer
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment