FreeRDP
client/rdpsnd_main.h
1 
21 #ifndef FREERDP_CHANNEL_RDPSND_CLIENT_MAIN_H
22 #define FREERDP_CHANNEL_RDPSND_CLIENT_MAIN_H
23 
24 #include <freerdp/api.h>
25 #include <freerdp/svc.h>
26 #include <freerdp/addin.h>
27 #include <freerdp/client/rdpsnd.h>
28 #include <freerdp/channels/log.h>
29 
30 #define TAG CHANNELS_TAG("rdpsnd.client")
31 
32 #if defined(WITH_DEBUG_SND)
33 #define DEBUG_SND(...) WLog_DBG(TAG, __VA_ARGS__)
34 #else
35 #define DEBUG_SND(...) \
36  do \
37  { \
38  } while (0)
39 #endif
40 
41 #endif /* FREERDP_CHANNEL_RDPSND_CLIENT_MAIN_H */