Commit efc988e1 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msi: Replace inline static with static inline.

parent 7169718d
......@@ -825,7 +825,7 @@ static inline BOOL msi_free( void *mem )
return HeapFree( GetProcessHeap(), 0, mem );
}
inline static char *strdupWtoA( LPCWSTR str )
static inline char *strdupWtoA( LPCWSTR str )
{
LPSTR ret = NULL;
DWORD len;
......@@ -838,7 +838,7 @@ inline static char *strdupWtoA( LPCWSTR str )
return ret;
}
inline static LPWSTR strdupAtoW( LPCSTR str )
static inline LPWSTR strdupAtoW( LPCSTR str )
{
LPWSTR ret = NULL;
DWORD len;
......@@ -851,7 +851,7 @@ inline static LPWSTR strdupAtoW( LPCSTR str )
return ret;
}
inline static LPWSTR strdupW( LPCWSTR src )
static inline LPWSTR strdupW( LPCWSTR src )
{
LPWSTR dest;
if (!src) return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment