Commit 6eba82d4 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dsound: Replace inline static with static inline.

parent 4eb936db
...@@ -115,7 +115,7 @@ int ds_default_bits_per_sample = 8; ...@@ -115,7 +115,7 @@ int ds_default_bits_per_sample = 8;
* Get a config key from either the app-specific or the default config * 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 ) char *buffer, DWORD size )
{ {
if (appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE)buffer, &size )) return 0; if (appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE)buffer, &size )) return 0;
......
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