Bemanitools v5.26 release

This commit is contained in:
icex2
2019-09-27 22:36:50 +02:00
commit cbd7720349
718 changed files with 62731 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef UTIL_MSG_THREAD_H
#define UTIL_MSG_THREAD_H
void msg_thread_init(HINSTANCE inst);
void msg_thread_fini(void);
/* Define these callbacks */
extern void msg_window_setup(HWND hwnd);
extern LRESULT WINAPI msg_window_proc(HWND hwnd, UINT msg, WPARAM wparam,
LPARAM lparam);
extern void msg_window_teardown(HWND hwnd);
#endif