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
bbc44135
Commit
bbc44135
authored
Nov 25, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Remove WINAPI on static functions where not needed.
parent
57908f88
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
cproxy.c
dlls/rpcrt4/cproxy.c
+1
-1
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+1
-1
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+2
-2
No files found.
dlls/rpcrt4/cproxy.c
View file @
bbc44135
...
...
@@ -193,7 +193,7 @@ HRESULT WINAPI StdProxy_Construct(REFIID riid,
return
S_OK
;
}
static
void
WINAPI
StdProxy_Destruct
(
LPRPCPROXYBUFFER
iface
)
static
void
StdProxy_Destruct
(
LPRPCPROXYBUFFER
iface
)
{
ICOM_THIS_MULTI
(
StdProxyImpl
,
lpVtbl
,
iface
);
...
...
dlls/rpcrt4/ndr_marshall.c
View file @
bbc44135
...
...
@@ -391,7 +391,7 @@ void * WINAPI NdrAllocate(MIDL_STUB_MESSAGE *pStubMsg, SIZE_T len)
return
p
;
}
static
void
WINAPI
NdrFree
(
MIDL_STUB_MESSAGE
*
pStubMsg
,
unsigned
char
*
Pointer
)
static
void
NdrFree
(
MIDL_STUB_MESSAGE
*
pStubMsg
,
unsigned
char
*
Pointer
)
{
TRACE
(
"(%p, %p)
\n
"
,
pStubMsg
,
Pointer
);
...
...
dlls/rpcrt4/ndr_stubless.c
View file @
bbc44135
...
...
@@ -107,7 +107,7 @@ void WINAPI NdrRpcSmSetClientToOsf(PMIDL_STUB_MESSAGE pMessage)
#endif
}
static
void
WINAPI
dump_RPC_FC_PROC_PF
(
PARAM_ATTRIBUTES
param_attributes
)
static
void
dump_RPC_FC_PROC_PF
(
PARAM_ATTRIBUTES
param_attributes
)
{
if
(
param_attributes
.
MustSize
)
TRACE
(
" MustSize"
);
if
(
param_attributes
.
MustFree
)
TRACE
(
" MustFree"
);
...
...
@@ -123,7 +123,7 @@ static void WINAPI dump_RPC_FC_PROC_PF(PARAM_ATTRIBUTES param_attributes)
if
(
param_attributes
.
ServerAllocSize
)
TRACE
(
" ServerAllocSize = %d"
,
param_attributes
.
ServerAllocSize
*
8
);
}
static
void
WINAPI
dump_INTERPRETER_OPT_FLAGS
(
INTERPRETER_OPT_FLAGS
Oi2Flags
)
static
void
dump_INTERPRETER_OPT_FLAGS
(
INTERPRETER_OPT_FLAGS
Oi2Flags
)
{
if
(
Oi2Flags
.
ServerMustSize
)
TRACE
(
" ServerMustSize"
);
if
(
Oi2Flags
.
ClientMustSize
)
TRACE
(
" ClientMustSize"
);
...
...
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