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
87fa2d58
Commit
87fa2d58
authored
Dec 19, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a few problems caused by the new objidl.idl.
parent
27a8ff25
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
33 deletions
+11
-33
bindctx.c
dlls/ole32/bindctx.c
+4
-4
ftmarshal.c
dlls/ole32/ftmarshal.c
+0
-3
ifs.c
dlls/ole32/ifs.c
+2
-4
marshal.c
dlls/ole32/marshal.c
+2
-6
ole16.c
dlls/ole32/ole16.c
+0
-7
oleproxy.c
dlls/ole32/oleproxy.c
+3
-3
rpc.c
dlls/ole32/rpc.c
+0
-6
No files found.
dlls/ole32/bindctx.c
View file @
87fa2d58
...
...
@@ -68,8 +68,8 @@ static ULONG WINAPI BindCtxImpl_Release(IBindCtx* iface);
static
HRESULT
WINAPI
BindCtxImpl_RegisterObjectBound
(
IBindCtx
*
iface
,
IUnknown
*
punk
);
static
HRESULT
WINAPI
BindCtxImpl_RevokeObjectBound
(
IBindCtx
*
iface
,
IUnknown
*
punk
);
static
HRESULT
WINAPI
BindCtxImpl_ReleaseBoundObjects
(
IBindCtx
*
iface
);
static
HRESULT
WINAPI
BindCtxImpl_SetBindOptions
(
IBindCtx
*
iface
,
LPBIND_OPTS2
pbindopts
);
static
HRESULT
WINAPI
BindCtxImpl_GetBindOptions
(
IBindCtx
*
iface
,
LPBIND_OPTS2
pbindopts
);
static
HRESULT
WINAPI
BindCtxImpl_SetBindOptions
(
IBindCtx
*
iface
,
BIND_OPTS
*
pbindopts
);
static
HRESULT
WINAPI
BindCtxImpl_GetBindOptions
(
IBindCtx
*
iface
,
BIND_OPTS
*
pbindopts
);
static
HRESULT
WINAPI
BindCtxImpl_GetRunningObjectTable
(
IBindCtx
*
iface
,
IRunningObjectTable
**
pprot
);
static
HRESULT
WINAPI
BindCtxImpl_RegisterObjectParam
(
IBindCtx
*
iface
,
LPOLESTR
pszkey
,
IUnknown
*
punk
);
static
HRESULT
WINAPI
BindCtxImpl_GetObjectParam
(
IBindCtx
*
iface
,
LPOLESTR
pszkey
,
IUnknown
**
punk
);
...
...
@@ -308,7 +308,7 @@ HRESULT WINAPI BindCtxImpl_ReleaseBoundObjects(IBindCtx* iface)
/******************************************************************************
* BindCtx_SetBindOptions
******************************************************************************/
HRESULT
WINAPI
BindCtxImpl_SetBindOptions
(
IBindCtx
*
iface
,
LPBIND_OPTS2
pbindopts
)
HRESULT
WINAPI
BindCtxImpl_SetBindOptions
(
IBindCtx
*
iface
,
BIND_OPTS
*
pbindopts
)
{
ICOM_THIS
(
BindCtxImpl
,
iface
);
...
...
@@ -329,7 +329,7 @@ HRESULT WINAPI BindCtxImpl_SetBindOptions(IBindCtx* iface,LPBIND_OPTS2 pbindopts
/******************************************************************************
* BindCtx_GetBindOptions
******************************************************************************/
HRESULT
WINAPI
BindCtxImpl_GetBindOptions
(
IBindCtx
*
iface
,
LPBIND_OPTS2
pbindopts
)
HRESULT
WINAPI
BindCtxImpl_GetBindOptions
(
IBindCtx
*
iface
,
BIND_OPTS
*
pbindopts
)
{
ICOM_THIS
(
BindCtxImpl
,
iface
);
...
...
dlls/ole32/ftmarshal.c
View file @
87fa2d58
...
...
@@ -26,10 +26,7 @@
#include <assert.h>
#include "winbase.h"
#include "objbase.h"
#include "wine/obj_storage.h"
#include "wine/obj_marshal.h"
#include "wine/debug.h"
...
...
dlls/ole32/ifs.c
View file @
87fa2d58
...
...
@@ -456,18 +456,16 @@ static int WINAPI IMallocSpy_fnPostDidAlloc(LPMALLOCSPY iface, void* pRequest, B
return
fActual
;
}
static
int
WINAPI
IMallocSpy_fnPreHeapMinimize
(
LPMALLOCSPY
iface
)
static
void
WINAPI
IMallocSpy_fnPreHeapMinimize
(
LPMALLOCSPY
iface
)
{
ICOM_THIS
(
_MallocSpy
,
iface
);
TRACE
(
"(%p)->()
\n
"
,
This
);
return
0
;
}
static
int
WINAPI
IMallocSpy_fnPostHeapMinimize
(
LPMALLOCSPY
iface
)
static
void
WINAPI
IMallocSpy_fnPostHeapMinimize
(
LPMALLOCSPY
iface
)
{
ICOM_THIS
(
_MallocSpy
,
iface
);
TRACE
(
"(%p)->()
\n
"
,
This
);
return
0
;
}
static
void
MallocSpyDumpLeaks
()
{
...
...
dlls/ole32/marshal.c
View file @
87fa2d58
...
...
@@ -35,12 +35,6 @@
#include "wownt32.h"
#include "wtypes.h"
#include "wine/unicode.h"
#include "wine/obj_base.h"
#include "wine/obj_clientserver.h"
#include "wine/obj_misc.h"
#include "wine/obj_marshal.h"
#include "wine/obj_storage.h"
#include "wine/obj_channel.h"
#include "wine/winbase16.h"
#include "compobj_private.h"
#include "ifs.h"
...
...
@@ -49,6 +43,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
extern
const
CLSID
CLSID_DfMarshal
;
/* Marshaling just passes a unique identifier to the remote client,
* that makes it possible to find the passed interface again.
*
...
...
dlls/ole32/ole16.c
View file @
87fa2d58
...
...
@@ -39,16 +39,9 @@
#include "wownt32.h"
#include "wtypes.h"
#include "wine/unicode.h"
#include "wine/obj_base.h"
#include "wine/obj_clientserver.h"
#include "wine/obj_misc.h"
#include "wine/obj_marshal.h"
#include "wine/obj_storage.h"
#include "wine/obj_channel.h"
#include "wine/winbase16.h"
#include "compobj_private.h"
#include "ifs.h"
#include "wine/winbase16.h"
#include "wine/debug.h"
...
...
dlls/ole32/oleproxy.c
View file @
87fa2d58
...
...
@@ -44,9 +44,6 @@
#include "winerror.h"
#include "winreg.h"
#include "wtypes.h"
#include "wine/obj_base.h"
#include "wine/obj_marshal.h"
#include "wine/obj_channel.h"
#include "compobj_private.h"
...
...
@@ -54,6 +51,9 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
const
CLSID
CLSID_DfMarshal
=
{
0x0000030b
,
0
,
0
,
{
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
const
CLSID
CLSID_PSFactoryBuffer
=
{
0x00000320
,
0
,
0
,
{
0xc0
,
0
,
0
,
0
,
0
,
0
,
0
,
0x46
}
};
/* From: http://msdn.microsoft.com/library/en-us/com/cmi_m_4lda.asp
*
* The first time a client requests a pointer to an interface on a
...
...
dlls/ole32/rpc.c
View file @
87fa2d58
...
...
@@ -35,12 +35,6 @@
#include "wownt32.h"
#include "wtypes.h"
#include "wine/unicode.h"
#include "wine/obj_base.h"
#include "wine/obj_clientserver.h"
#include "wine/obj_misc.h"
#include "wine/obj_marshal.h"
#include "wine/obj_storage.h"
#include "wine/obj_channel.h"
#include "wine/winbase16.h"
#include "compobj_private.h"
#include "ifs.h"
...
...
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