FreeRDP
echo_main.h
1 
20 #ifndef FREERDP_CHANNEL_ECHO_CLIENT_MAIN_H
21 #define FREERDP_CHANNEL_ECHO_CLIENT_MAIN_H
22 
23 #include <freerdp/config.h>
24 
25 #include <freerdp/dvc.h>
26 #include <freerdp/types.h>
27 #include <freerdp/addin.h>
28 #include <freerdp/channels/log.h>
29 
30 #define DVC_TAG CHANNELS_TAG("echo.client")
31 #ifdef WITH_DEBUG_DVC
32 #define DEBUG_DVC(...) WLog_DBG(DVC_TAG, __VA_ARGS__)
33 #else
34 #define DEBUG_DVC(...) \
35  do \
36  { \
37  } while (0)
38 #endif
39 
40 #endif /* FREERDP_CHANNEL_ECHO_CLIENT_MAIN_H */