Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3535b70a
Commit
3535b70a
authored
Aug 29, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Sep 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Remove some unused code.
parent
55156335
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
13 deletions
+0
-13
cproxy.c
dlls/rpcrt4/cproxy.c
+0
-13
No files found.
dlls/rpcrt4/cproxy.c
View file @
3535b70a
...
...
@@ -18,7 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
* TODO: Handle non-i386 architectures
* Get rid of #if 0'ed code.
*/
#include <stdarg.h>
...
...
@@ -318,26 +317,14 @@ ULONG WINAPI IUnknown_AddRef_Proxy(LPUNKNOWN iface)
{
ICOM_THIS_MULTI
(
StdProxyImpl
,
PVtbl
,
iface
);
TRACE
(
"(%p)->AddRef() %s
\n
"
,
This
,
This
->
name
);
#if 0 /* interface refcounting */
return ++(This->RefCount);
#else
/* object refcounting */
return
IUnknown_AddRef
(
This
->
pUnkOuter
);
#endif
}
ULONG
WINAPI
IUnknown_Release_Proxy
(
LPUNKNOWN
iface
)
{
ICOM_THIS_MULTI
(
StdProxyImpl
,
PVtbl
,
iface
);
TRACE
(
"(%p)->Release() %s
\n
"
,
This
,
This
->
name
);
#if 0 /* interface refcounting */
if (!--(This->RefCount)) {
StdProxy_Destruct((LPRPCPROXYBUFFER)&This->lpVtbl);
return 0;
}
return This->RefCount;
#else
/* object refcounting */
return
IUnknown_Release
(
This
->
pUnkOuter
);
#endif
}
/***********************************************************************
...
...
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