mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
570 B
22 lines
570 B
/*
|
|
* instdata.h
|
|
*/
|
|
|
|
/* Structure to pass instance data from the application
|
|
to the low-level callback function.
|
|
*/
|
|
typedef struct callbackInstance_tag
|
|
{
|
|
HWND hWnd;
|
|
HANDLE hSelf;
|
|
DWORD dwDevice;
|
|
LPCIRCULARBUFFER lpBuf;
|
|
HMIDIOUT hMapper;
|
|
} CALLBACKINSTANCEDATA;
|
|
typedef CALLBACKINSTANCEDATA FAR *LPCALLBACKINSTANCEDATA;
|
|
|
|
/* Function prototypes
|
|
*/
|
|
LPCALLBACKINSTANCEDATA FAR PASCAL AllocCallbackInstanceData(void);
|
|
void FAR PASCAL FreeCallbackInstanceData(LPCALLBACKINSTANCEDATA lpBuf);
|
|
|