FreeRDP
wf_event.h
1 
22 #ifndef FREERDP_CLIENT_WIN_EVENT_H
23 #define FREERDP_CLIENT_WIN_EVENT_H
24 
25 #include "wf_client.h"
26 #include <freerdp/log.h>
27 
28 LRESULT CALLBACK wf_ll_kbd_proc(int nCode, WPARAM wParam, LPARAM lParam);
29 LRESULT CALLBACK wf_event_proc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam);
30 
31 void wf_event_focus_in(wfContext* wfc);
32 
33 #define KBD_TAG CLIENT_TAG("windows")
34 #ifdef WITH_DEBUG_KBD
35 #define DEBUG_KBD(...) WLog_DBG(KBD_TAG, __VA_ARGS__)
36 #else
37 #define DEBUG_KBD(...) \
38  do \
39  { \
40  } while (0)
41 #endif
42 
43 #endif /* FREERDP_CLIENT_WIN_EVENT_H */