FreeRDP
sshagent_main.h
1 
21 #ifndef SSHAGENT_MAIN_H
22 #define SSHAGENT_MAIN_H
23 
24 #include <freerdp/config.h>
25 
26 #include <winpr/stream.h>
27 
28 #include <freerdp/svc.h>
29 #include <freerdp/addin.h>
30 #include <freerdp/channels/log.h>
31 
32 #define DVC_TAG CHANNELS_TAG("sshagent.client")
33 #ifdef WITH_DEBUG_SSHAGENT
34 #define DEBUG_SSHAGENT(...) WLog_DBG(DVC_TAG, __VA_ARGS__)
35 #else
36 #define DEBUG_SSHAGENT(...) \
37  do \
38  { \
39  } while (0)
40 #endif
41 
42 #endif /* SSHAGENT_MAIN_H */