ddraw: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 19 14:45:14 CDT 2007


Changelog:
    ddraw: Replace inline static with static inline.

diff -urN a/dlls/ddraw/main.c b/dlls/ddraw/main.c
--- a/dlls/ddraw/main.c	2007-01-02 21:10:46.000000000 +0000
+++ b/dlls/ddraw/main.c	2007-03-19 19:34:48.000000000 +0000
@@ -795,7 +795,7 @@
  * Reads a config key from the registry. Taken from WineD3D
  *
  ***********************************************************************/
-inline static DWORD get_config_key(HKEY defkey, HKEY appkey, const char* name, char* buffer, DWORD size)
+static inline DWORD get_config_key(HKEY defkey, HKEY appkey, const char* name, char* buffer, DWORD size)
 {
     if (0 != appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE) buffer, &size )) return 0;
     if (0 != defkey && !RegQueryValueExA( defkey, name, 0, NULL, (LPBYTE) buffer, &size )) return 0;



More information about the wine-patches mailing list