rpcrt4: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-22 18:26:46 +00:00 committed by Alexandre Julliard
parent cae5c216a5
commit 67813450b9
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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)