Ajouter WTQueuePacketsEx pour voir les nombres serial
This commit is contained in:
parent
e488b14a52
commit
6656022edc
|
@ -38,6 +38,7 @@ WTMGRDEFCONTEXT gpWTMgrDefContext = nullptr;
|
||||||
WTMGRDEFCONTEXTEX gpWTMgrDefContextEx = nullptr;
|
WTMGRDEFCONTEXTEX gpWTMgrDefContextEx = nullptr;
|
||||||
|
|
||||||
// TODO - add more wintab32 function pointers as needed
|
// TODO - add more wintab32 function pointers as needed
|
||||||
|
WTQPACKETSEX gpWTQueuePacketsEx = nullptr;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
// Purpose
|
// Purpose
|
||||||
|
@ -81,6 +82,7 @@ BOOL LoadWintab(void)
|
||||||
gpWTMgrClose = (WTMGRCLOSE)GetProcAddress(ghWintab, "WTMgrClose");
|
gpWTMgrClose = (WTMGRCLOSE)GetProcAddress(ghWintab, "WTMgrClose");
|
||||||
gpWTMgrDefContext = (WTMGRDEFCONTEXT)GetProcAddress(ghWintab, "WTMgrDefContext");
|
gpWTMgrDefContext = (WTMGRDEFCONTEXT)GetProcAddress(ghWintab, "WTMgrDefContext");
|
||||||
gpWTMgrDefContextEx = (WTMGRDEFCONTEXTEX)GetProcAddress(ghWintab, "WTMgrDefContextEx");
|
gpWTMgrDefContextEx = (WTMGRDEFCONTEXTEX)GetProcAddress(ghWintab, "WTMgrDefContextEx");
|
||||||
|
gpWTQueuePacketsEx = (WTQPACKETSEX)GetProcAddress(ghWintab, "WTQueuePacketsEx");
|
||||||
|
|
||||||
// TODO - don't forget to NULL out pointers in UnloadWintab().
|
// TODO - don't forget to NULL out pointers in UnloadWintab().
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -120,6 +122,7 @@ void UnloadWintab(void)
|
||||||
gpWTMgrClose = nullptr;
|
gpWTMgrClose = nullptr;
|
||||||
gpWTMgrDefContext = nullptr;
|
gpWTMgrDefContext = nullptr;
|
||||||
gpWTMgrDefContextEx = nullptr;
|
gpWTMgrDefContextEx = nullptr;
|
||||||
|
gpWTQueuePacketsEx = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue