dsound: Replace inline static with static inline.

oldstable
Andrew Talbot 2007-03-19 19:46:38 +00:00 committed by Alexandre Julliard
parent 4eb936db33
commit 6eba82d418
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ int ds_default_bits_per_sample = 8;
* Get a config key from either the app-specific or the default config
*/
inline static DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name,
static inline DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name,
char *buffer, DWORD size )
{
if (appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE)buffer, &size )) return 0;