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

« back to all changes in this revision

Viewing changes to include/freerdp/rail/window.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
 * RAIL Windows
4
4
 *
5
5
 * Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
17
17
 * limitations under the License.
18
18
 */
19
19
 
20
 
#ifndef __RAIL_WINDOW_H
21
 
#define __RAIL_WINDOW_H
 
20
#ifndef FREERDP_RAIL_WINDOW_H
 
21
#define FREERDP_RAIL_WINDOW_H
22
22
 
23
23
#include <freerdp/api.h>
24
24
#include <freerdp/rail.h>
25
25
#include <freerdp/types.h>
26
26
#include <freerdp/update.h>
27
 
#include <freerdp/utils/stream.h>
 
27
 
 
28
#include <winpr/stream.h>
28
29
 
29
30
typedef struct rdp_window rdpWindow;
30
31
 
38
39
        char* title;
39
40
        rdpIcon* bigIcon;
40
41
        rdpIcon* smallIcon;
41
 
        uint32 fieldFlags;
 
42
        UINT32 fieldFlags;
42
43
        rdpWindow* prev;
43
44
        rdpWindow* next;
44
 
        uint32 windowId;
45
 
        uint32 ownerWindowId;
46
 
        rdpWindow* ownerWindow;
47
 
        uint32 style;
48
 
        uint32 extendedStyle;
49
 
        uint8 showState;
50
 
        UNICODE_STRING titleInfo;
51
 
        uint32 clientOffsetX;
52
 
        uint32 clientOffsetY;
53
 
        uint32 clientAreaWidth;
54
 
        uint32 clientAreaHeight;
55
 
        uint8 RPContent;
56
 
        uint32 rootParentHandle;
57
 
        sint32 windowOffsetX;
58
 
        sint32 windowOffsetY;
59
 
        uint32 windowClientDeltaX;
60
 
        uint32 windowClientDeltaY;
61
 
        uint32 windowWidth;
62
 
        uint32 windowHeight;
63
 
        uint16 numWindowRects;
 
45
        UINT32 windowId;
 
46
        UINT32 ownerWindowId;
 
47
        UINT32 style;
 
48
        UINT32 extendedStyle;
 
49
        BYTE showState;
 
50
        RAIL_UNICODE_STRING titleInfo;
 
51
        UINT32 clientOffsetX;
 
52
        UINT32 clientOffsetY;
 
53
        UINT32 clientAreaWidth;
 
54
        UINT32 clientAreaHeight;
 
55
        BYTE RPContent;
 
56
        UINT32 rootParentHandle;
 
57
        INT32 windowOffsetX;
 
58
        INT32 windowOffsetY;
 
59
        UINT32 windowClientDeltaX;
 
60
        UINT32 windowClientDeltaY;
 
61
        UINT32 windowWidth;
 
62
        UINT32 windowHeight;
 
63
        UINT16 numWindowRects;
64
64
        RECTANGLE_16* windowRects;
65
 
        uint32 visibleOffsetX;
66
 
        uint32 visibleOffsetY;
67
 
        uint16 numVisibilityRects;
 
65
        UINT32 visibleOffsetX;
 
66
        UINT32 visibleOffsetY;
 
67
        UINT16 numVisibilityRects;
68
68
        RECTANGLE_16* visibilityRects;
69
69
};
70
70
 
74
74
FREERDP_API void rail_UpdateWindow(rdpRail* rail, rdpWindow* window);
75
75
FREERDP_API void rail_DestroyWindow(rdpRail* rail, rdpWindow* window);
76
76
 
77
 
#endif /* __RAIL_WINDOW_H */
 
77
#endif /* FREERDP_RAIL_WINDOW_H */