FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
libfreerdp/core/window.h
1
21#ifndef FREERDP_LIB_CORE_WINDOW_H
22#define FREERDP_LIB_CORE_WINDOW_H
23
24#include "update.h"
25
26#include <winpr/stream.h>
27#include <freerdp/log.h>
28#include <freerdp/api.h>
29
30FREERDP_LOCAL BOOL update_recv_altsec_window_order(rdpUpdate* update, wStream* s);
31FREERDP_LOCAL void update_free_window_state(WINDOW_STATE_ORDER* window_state);
32
33#define WND_TAG FREERDP_TAG("core.wnd")
34#ifdef WITH_DEBUG_WND
35#define DEBUG_WND(...) WLog_DBG(WND_TAG, __VA_ARGS__)
36#else
37#define DEBUG_WND(...) \
38 do \
39 { \
40 } while (0)
41#endif
42
43#endif /* FREERDP_LIB_CORE_WINDOW_H */