Andrew Talbot : rpcrt4: Replace inline static with static inline.
Module: wine Branch: master Commit: 67813450b938bd0f11f6343d59839ab94e38d59a URL: http://source.winehq.org/git/wine.git/?a=commit;h=67813450b938bd0f11f6343d59... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Thu Mar 22 18:26:46 2007 +0000 rpcrt4: Replace inline static with static inline. --- dlls/rpcrt4/ndr_marshall.c | 2 +- dlls/rpcrt4/rpc_server.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c index 7fce001..ad95b53 100644 --- a/dlls/rpcrt4/ndr_marshall.c +++ b/dlls/rpcrt4/ndr_marshall.c @@ -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) diff --git a/dlls/rpcrt4/rpc_server.c b/dlls/rpcrt4/rpc_server.c index d9285d2..7152453 100644 --- a/dlls/rpcrt4/rpc_server.c +++ b/dlls/rpcrt4/rpc_server.c @@ -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)
participants (1)
-
Alexandre Julliard