FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
client/rdpei_main.h
1
20#ifndef FREERDP_CHANNEL_RDPEI_CLIENT_MAIN_H
21#define FREERDP_CHANNEL_RDPEI_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#include <freerdp/channels/rdpei.h>
31#include <freerdp/client/rdpei.h>
32
61typedef struct
62{
63 BOOL dirty;
64 BOOL active;
65 UINT32 contactId;
66 INT32 externalId;
69
70typedef struct
71{
72 BOOL dirty;
73 BOOL active;
74 INT32 externalId;
77
78#ifdef WITH_DEBUG_DVC
79#define DEBUG_DVC(...) WLog_DBG(TAG, __VA_ARGS__)
80#else
81#define DEBUG_DVC(...) \
82 do \
83 { \
84 } while (0)
85#endif
86
87#endif /* FREERDP_CHANNEL_RDPEI_CLIENT_MAIN_H */