wintab32: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-23 15:10:45 +00:00 committed by Alexandre Julliard
parent 0810a92353
commit 7e0137da53

View file

@ -236,12 +236,12 @@ LPOPENCONTEXT AddPacketToContextQueue(LPWTPACKET packet, HWND hwnd)
/* /*
* Flushes all packets from the queue. * Flushes all packets from the queue.
*/ */
inline static void TABLET_FlushQueue(LPOPENCONTEXT context) static inline void TABLET_FlushQueue(LPOPENCONTEXT context)
{ {
context->PacketsQueued = 0; 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); memcpy(target,src,size);
return(size); return(size);