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
b330bd7a
Commit
b330bd7a
authored
Jan 10, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jan 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Remove the unused RPCRT4_GetPSFactory function.
parent
e2985384
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
16 deletions
+0
-16
ndr_misc.h
dlls/rpcrt4/ndr_misc.h
+0
-2
ndr_ole.c
dlls/rpcrt4/ndr_ole.c
+0
-14
No files found.
dlls/rpcrt4/ndr_misc.h
View file @
b330bd7a
...
...
@@ -30,8 +30,6 @@
struct
IPSFactoryBuffer
;
HRESULT
RPCRT4_GetPSFactory
(
REFIID
riid
,
struct
IPSFactoryBuffer
**
ppPS
);
#define ComputeConformance(pStubMsg, pMemory, pFormat, def) ComputeConformanceOrVariance(pStubMsg, pMemory, pFormat, def, &pStubMsg->MaxCount)
#define ComputeVariance(pStubMsg, pMemory, pFormat, def) ComputeConformanceOrVariance(pStubMsg, pMemory, pFormat, def, &pStubMsg->ActualCount)
PFORMAT_STRING
ComputeConformanceOrVariance
(
...
...
dlls/rpcrt4/ndr_ole.c
View file @
b330bd7a
...
...
@@ -353,17 +353,3 @@ void WINAPI NdrOleFree(void *NodeToFree)
if
(
!
LoadCOM
())
return
;
COM_MemFree
(
NodeToFree
);
}
/* internal */
HRESULT
RPCRT4_GetPSFactory
(
REFIID
riid
,
LPPSFACTORYBUFFER
*
pPS
)
{
HRESULT
hr
;
CLSID
clsid
;
if
(
!
LoadCOM
())
return
RPC_E_UNEXPECTED
;
hr
=
COM_GetPSClsid
(
riid
,
&
clsid
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
COM_GetClassObject
(
&
clsid
,
CLSCTX_INPROC_SERVER
,
NULL
,
&
IID_IPSFactoryBuffer
,
(
LPVOID
*
)
pPS
);
return
hr
;
}
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