Commit 3c78748c authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winmm: Replace inline static with static inline.

parent 57746f95
......@@ -131,7 +131,7 @@ LPWINE_DRIVER DRIVER_FindFromHDrvr(HDRVR hDrvr)
/**************************************************************************
* DRIVER_SendMessage [internal]
*/
inline static LRESULT DRIVER_SendMessage(LPWINE_DRIVER lpDrv, UINT msg,
static inline LRESULT DRIVER_SendMessage(LPWINE_DRIVER lpDrv, UINT msg,
LPARAM lParam1, LPARAM lParam2)
{
LRESULT ret = 0;
......
......@@ -85,7 +85,7 @@ static const WCHAR wszOpen [] = {'o','p','e','n',0};
static const WCHAR wszSystemIni[] = {'s','y','s','t','e','m','.','i','n','i',0};
/* dup a string and uppercase it */
inline static LPWSTR str_dup_upper( LPCWSTR str )
static inline LPWSTR str_dup_upper( LPCWSTR str )
{
INT len = (strlenW(str) + 1) * sizeof(WCHAR);
LPWSTR p = HeapAlloc( GetProcessHeap(), 0, len );
......
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