wintab32: Replace inline static with static inline.
This commit is contained in:
parent
0810a92353
commit
7e0137da53
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue