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
4bb2199c
Commit
4bb2199c
authored
Dec 04, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Make a function static.
parent
760f9bf3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
compobj_private.h
dlls/ole32/compobj_private.h
+0
-2
stubmanager.c
dlls/ole32/stubmanager.c
+1
-1
No files found.
dlls/ole32/compobj_private.h
View file @
4bb2199c
...
...
@@ -212,7 +212,6 @@ struct stub_manager *get_stub_manager_from_object(APARTMENT *apt, void *object);
BOOL
stub_manager_notify_unmarshal
(
struct
stub_manager
*
m
,
const
IPID
*
ipid
);
BOOL
stub_manager_is_table_marshaled
(
struct
stub_manager
*
m
,
const
IPID
*
ipid
);
void
stub_manager_release_marshal_data
(
struct
stub_manager
*
m
,
ULONG
refs
,
const
IPID
*
ipid
,
BOOL
tableweak
);
HRESULT
ipid_to_stub_manager
(
const
IPID
*
ipid
,
APARTMENT
**
stub_apt
,
struct
stub_manager
**
stubmgr_ret
);
HRESULT
ipid_get_dispatch_params
(
const
IPID
*
ipid
,
APARTMENT
**
stub_apt
,
IRpcStubBuffer
**
stub
,
IRpcChannelBuffer
**
chan
,
IID
*
iid
,
IUnknown
**
iface
);
HRESULT
start_apartment_remote_unknown
(
void
);
...
...
@@ -309,7 +308,6 @@ static inline GUID COM_CurrentCausalityId(void)
/* from dlldata.c */
extern
HINSTANCE
hProxyDll
DECLSPEC_HIDDEN
;
extern
BOOL
WINAPI
OLE32_DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLE32_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLE32_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLE32_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
...
...
dlls/ole32/stubmanager.c
View file @
4bb2199c
...
...
@@ -367,7 +367,7 @@ static struct stub_manager *get_stub_manager_from_ipid(APARTMENT *apt, const IPI
return
result
;
}
HRESULT
ipid_to_stub_manager
(
const
IPID
*
ipid
,
APARTMENT
**
stub_apt
,
struct
stub_manager
**
stubmgr_ret
)
static
HRESULT
ipid_to_stub_manager
(
const
IPID
*
ipid
,
APARTMENT
**
stub_apt
,
struct
stub_manager
**
stubmgr_ret
)
{
/* FIXME: hack for IRemUnknown */
if
(
ipid
->
Data2
==
0xffff
)
...
...
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