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
67813450
Commit
67813450
authored
Mar 22, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Replace inline static with static inline.
parent
cae5c216
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
ndr_marshall.c
dlls/rpcrt4/ndr_marshall.c
+1
-1
rpc_server.c
dlls/rpcrt4/rpc_server.c
+2
-2
No files found.
dlls/rpcrt4/ndr_marshall.c
View file @
67813450
...
...
@@ -532,7 +532,7 @@ finish_conf:
/* multiply two numbers together, raising an RPC_S_INVALID_BOUND exception if
* the result overflows 32-bits */
inline
static
ULONG
safe_multiply
(
ULONG
a
,
ULONG
b
)
static
inline
ULONG
safe_multiply
(
ULONG
a
,
ULONG
b
)
{
ULONGLONG
ret
=
(
ULONGLONG
)
a
*
b
;
if
(
ret
>
0xffffffff
)
...
...
dlls/rpcrt4/rpc_server.c
View file @
67813450
...
...
@@ -97,7 +97,7 @@ static LONG listen_count;
static
UUID
uuid_nil
;
inline
static
RpcObjTypeMap
*
LookupObjTypeMap
(
UUID
*
ObjUuid
)
static
inline
RpcObjTypeMap
*
LookupObjTypeMap
(
UUID
*
ObjUuid
)
{
RpcObjTypeMap
*
rslt
=
RpcObjTypeMaps
;
RPC_STATUS
dummy
;
...
...
@@ -110,7 +110,7 @@ inline static RpcObjTypeMap *LookupObjTypeMap(UUID *ObjUuid)
return
rslt
;
}
inline
static
UUID
*
LookupObjType
(
UUID
*
ObjUuid
)
static
inline
UUID
*
LookupObjType
(
UUID
*
ObjUuid
)
{
RpcObjTypeMap
*
map
=
LookupObjTypeMap
(
ObjUuid
);
if
(
map
)
...
...
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