mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-19 23:59:36 +01:00
12 lines
213 B
C
12 lines
213 B
C
#ifndef MOUSE_H
|
|
#define MOUSE_H
|
|
|
|
void mouse_lock();
|
|
void mouse_unlock();
|
|
LRESULT CALLBACK mouse_hook_proc(int Code, WPARAM wParam, LPARAM lParam);
|
|
|
|
extern HHOOK g_mouse_hook;
|
|
extern HOOKPROC g_mouse_proc;
|
|
|
|
#endif
|