~ubuntu-branches/ubuntu/vivid/freerdp/vivid

« back to all changes in this revision

Viewing changes to client/X11/xf_cliprdr.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2014-11-11 12:20:50 UTC
  • mfrom: (1.2.5)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20141111122050-7z628f4ab38qxad5
Tags: upstream-1.1.0~git20140921.1.440916e+dfsg1
ImportĀ upstreamĀ versionĀ 1.1.0~git20140921.1.440916e+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * FreeRDP: A Remote Desktop Protocol Client
 
2
 * FreeRDP: A Remote Desktop Protocol Implementation
3
3
 * X11 Clipboard Redirection
4
4
 *
5
5
 * Copyright 2010-2011 Vic Lee
20
20
#ifndef __XF_CLIPRDR_H
21
21
#define __XF_CLIPRDR_H
22
22
 
 
23
#include "xf_client.h"
23
24
#include "xfreerdp.h"
24
25
 
25
 
void xf_cliprdr_init(xfInfo* xfi, rdpChannels* chanman);
26
 
void xf_cliprdr_uninit(xfInfo* xfi);
27
 
void xf_process_cliprdr_event(xfInfo* xfi, RDP_EVENT* event);
28
 
boolean xf_cliprdr_process_selection_notify(xfInfo* xfi, XEvent* xevent);
29
 
boolean xf_cliprdr_process_selection_request(xfInfo* xfi, XEvent* xevent);
30
 
boolean xf_cliprdr_process_selection_clear(xfInfo* xfi, XEvent* xevent);
31
 
boolean xf_cliprdr_process_property_notify(xfInfo* xfi, XEvent* xevent);
32
 
void xf_cliprdr_check_owner(xfInfo* xfi);
33
 
 
34
 
#ifdef WITH_DEBUG_X11_CLIPRDR
35
 
#define DEBUG_X11_CLIPRDR(fmt, ...) DEBUG_CLASS(X11_CLIPRDR, fmt, ## __VA_ARGS__)
36
 
#else
37
 
#define DEBUG_X11_CLIPRDR(fmt, ...) DEBUG_NULL(fmt, ## __VA_ARGS__)
38
 
#endif
 
26
void xf_cliprdr_init(xfContext* xfc, rdpChannels* channels);
 
27
void xf_cliprdr_uninit(xfContext* xfc);
 
28
void xf_process_cliprdr_event(xfContext* xfc, wMessage* event);
 
29
BOOL xf_cliprdr_process_selection_notify(xfContext* xfc, XEvent* xevent);
 
30
BOOL xf_cliprdr_process_selection_request(xfContext* xfc, XEvent* xevent);
 
31
BOOL xf_cliprdr_process_selection_clear(xfContext* xfc, XEvent* xevent);
 
32
BOOL xf_cliprdr_process_property_notify(xfContext* xfc, XEvent* xevent);
 
33
void xf_cliprdr_check_owner(xfContext* xfc);
39
34
 
40
35
#endif /* __XF_CLIPRDR_H */