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
c584c2d1
Commit
c584c2d1
authored
Nov 25, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Remove __RPC_USER on static functions where not needed.
parent
31fd0d5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
usrmarshal.c
dlls/ole32/usrmarshal.c
+4
-4
No files found.
dlls/ole32/usrmarshal.c
View file @
c584c2d1
...
...
@@ -260,7 +260,7 @@ void __RPC_USER CLIPFORMAT_UserFree(ULONG *pFlags, CLIPFORMAT *pCF)
* so nothing to do */
}
static
ULONG
__RPC_USER
handle_UserSize
(
ULONG
*
pFlags
,
ULONG
StartingSize
,
HANDLE
*
handle
)
static
ULONG
handle_UserSize
(
ULONG
*
pFlags
,
ULONG
StartingSize
,
HANDLE
*
handle
)
{
if
(
LOWORD
(
*
pFlags
)
==
MSHCTX_DIFFERENTMACHINE
)
{
...
...
@@ -271,7 +271,7 @@ static ULONG __RPC_USER handle_UserSize(ULONG *pFlags, ULONG StartingSize, HANDL
return
StartingSize
+
sizeof
(
RemotableHandle
);
}
static
unsigned
char
*
__RPC_USER
handle_UserMarshal
(
ULONG
*
pFlags
,
unsigned
char
*
pBuffer
,
HANDLE
*
handle
)
static
unsigned
char
*
handle_UserMarshal
(
ULONG
*
pFlags
,
unsigned
char
*
pBuffer
,
HANDLE
*
handle
)
{
RemotableHandle
*
remhandle
=
(
RemotableHandle
*
)
pBuffer
;
if
(
LOWORD
(
*
pFlags
)
==
MSHCTX_DIFFERENTMACHINE
)
...
...
@@ -285,7 +285,7 @@ static unsigned char * __RPC_USER handle_UserMarshal(ULONG *pFlags, unsigned cha
return
pBuffer
+
sizeof
(
RemotableHandle
);
}
static
unsigned
char
*
__RPC_USER
handle_UserUnmarshal
(
ULONG
*
pFlags
,
unsigned
char
*
pBuffer
,
HANDLE
*
handle
)
static
unsigned
char
*
handle_UserUnmarshal
(
ULONG
*
pFlags
,
unsigned
char
*
pBuffer
,
HANDLE
*
handle
)
{
RemotableHandle
*
remhandle
=
(
RemotableHandle
*
)
pBuffer
;
if
(
remhandle
->
fContext
!=
WDT_INPROC_CALL
)
...
...
@@ -294,7 +294,7 @@ static unsigned char * __RPC_USER handle_UserUnmarshal(ULONG *pFlags, unsigned c
return
pBuffer
+
sizeof
(
RemotableHandle
);
}
static
void
__RPC_USER
handle_UserFree
(
ULONG
*
pFlags
,
HANDLE
*
phMenu
)
static
void
handle_UserFree
(
ULONG
*
pFlags
,
HANDLE
*
phMenu
)
{
/* nothing to do */
}
...
...
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