Commit 7e0137da authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

wintab32: Replace inline static with static inline.

parent 0810a923
......@@ -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);
......
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