winmm: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-23 15:10:05 +00:00 committed by Alexandre Julliard
parent 57746f9592
commit 3c78748cc1
2 changed files with 2 additions and 2 deletions

View file

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

View file

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