Andrew Talbot : ddraw: Replace inline static with static inline.
Module: wine Branch: master Commit: 4eb936db331ed25d9bd5c9301ad05af6d90a5885 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4eb936db331ed25d9bd5c9301a... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Mon Mar 19 19:45:14 2007 +0000 ddraw: Replace inline static with static inline. --- dlls/ddraw/main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ddraw/main.c b/dlls/ddraw/main.c index c754036..4e3d3a6 100644 --- a/dlls/ddraw/main.c +++ b/dlls/ddraw/main.c @@ -795,7 +795,7 @@ DestroyCallback(IDirectDrawSurface7 *surf, * 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;
participants (1)
-
Alexandre Julliard