~paulliu/ubuntu/precise/freerdp/fixext

« back to all changes in this revision

Viewing changes to include/freerdp/types_ui.h

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-10-25 14:29:02 UTC
  • mto: (9.1.1 sid) (1.1.7)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20101025142902-j8hmshnnxhu61l4m
Tags: upstream-0.8.1
ImportĀ upstreamĀ versionĀ 0.8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
typedef signed short sint16;
34
34
typedef unsigned int uint32;
35
35
typedef signed int sint32;
 
36
#ifdef _WIN32
 
37
typedef unsigned __int64 uint64;
 
38
typedef signed __int64 sint64;
 
39
#else
36
40
typedef unsigned long long uint64;
37
41
typedef signed long long sint64;
 
42
#endif
38
43
 
39
44
typedef int RD_BOOL;
40
45
typedef void *RD_HBITMAP;
41
46
typedef void *RD_HGLYPH;
42
 
typedef void *RD_HCOLOURMAP;
 
47
typedef void *RD_HPALETTE;
43
48
typedef void *RD_HCURSOR;
44
49
 
45
50
typedef struct _RD_POINT
48
53
}
49
54
RD_POINT;
50
55
 
51
 
typedef struct _RD_COLOURENTRY
 
56
typedef struct _RD_COLORENTRY
52
57
{
53
58
        uint8 red;
54
59
        uint8 green;
55
60
        uint8 blue;
56
61
}
57
 
RD_COLOURENTRY;
 
62
RD_COLORENTRY;
58
63
 
59
 
typedef struct _RD_COLOURMAP
 
64
typedef struct _RD_PALETTE
60
65
{
61
 
        uint16 ncolours;
62
 
        RD_COLOURENTRY *colours;
 
66
        uint16 ncolors;
 
67
        RD_COLORENTRY *colors;
63
68
}
64
 
RD_COLOURMAP;
 
69
RD_PALETTE;
65
70
 
66
71
typedef struct _RD_PEN
67
72
{
68
73
        uint8 style;
69
74
        uint8 width;
70
 
        uint32 colour;
 
75
        uint32 color;
71
76
}
72
77
RD_PEN;
73
78
 
74
79
/* this is whats in the brush cache */
75
80
typedef struct _RD_BRUSHDATA
76
81
{
77
 
        uint32 colour_code;
 
82
        uint32 color_code;
78
83
        uint32 data_size;
79
84
        uint8 *data;
80
85
}