Module: wine Branch: master Commit: 7e0137da536b2f4ac48df4a7848c04d93d3c229b URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e0137da536b2f4ac48df4a784...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Fri Mar 23 15:10:45 2007 +0000
wintab32: Replace inline static with static inline.
---
dlls/wintab32/context.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wintab32/context.c b/dlls/wintab32/context.c index aea9c67..5b538ad 100644 --- a/dlls/wintab32/context.c +++ b/dlls/wintab32/context.c @@ -236,12 +236,12 @@ LPOPENCONTEXT AddPacketToContextQueue(LPWTPACKET packet, HWND hwnd) /* * Flushes all packets from the queue. */ -inline static void TABLET_FlushQueue(LPOPENCONTEXT context) +static inline void TABLET_FlushQueue(LPOPENCONTEXT context) { context->PacketsQueued = 0; }
-inline static int CopyTabletData(LPVOID target, LPVOID src, INT size) +static inline int CopyTabletData(LPVOID target, LPVOID src, INT size) { memcpy(target,src,size); return(size);