mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 08:24:16 +09:00
freerdp: get rid of old types
This commit is contained in:
@@ -33,26 +33,26 @@
|
||||
|
||||
struct _POINTER_POSITION_UPDATE
|
||||
{
|
||||
uint32 xPos;
|
||||
uint32 yPos;
|
||||
UINT32 xPos;
|
||||
UINT32 yPos;
|
||||
};
|
||||
typedef struct _POINTER_POSITION_UPDATE POINTER_POSITION_UPDATE;
|
||||
|
||||
struct _POINTER_SYSTEM_UPDATE
|
||||
{
|
||||
uint32 type;
|
||||
UINT32 type;
|
||||
};
|
||||
typedef struct _POINTER_SYSTEM_UPDATE POINTER_SYSTEM_UPDATE;
|
||||
|
||||
struct _POINTER_COLOR_UPDATE
|
||||
{
|
||||
uint32 cacheIndex;
|
||||
uint32 xPos;
|
||||
uint32 yPos;
|
||||
uint32 width;
|
||||
uint32 height;
|
||||
uint32 lengthAndMask;
|
||||
uint32 lengthXorMask;
|
||||
UINT32 cacheIndex;
|
||||
UINT32 xPos;
|
||||
UINT32 yPos;
|
||||
UINT32 width;
|
||||
UINT32 height;
|
||||
UINT32 lengthAndMask;
|
||||
UINT32 lengthXorMask;
|
||||
BYTE* xorMaskData;
|
||||
BYTE* andMaskData;
|
||||
};
|
||||
@@ -60,14 +60,14 @@ typedef struct _POINTER_COLOR_UPDATE POINTER_COLOR_UPDATE;
|
||||
|
||||
struct _POINTER_NEW_UPDATE
|
||||
{
|
||||
uint32 xorBpp;
|
||||
UINT32 xorBpp;
|
||||
POINTER_COLOR_UPDATE colorPtrAttr;
|
||||
};
|
||||
typedef struct _POINTER_NEW_UPDATE POINTER_NEW_UPDATE;
|
||||
|
||||
struct _POINTER_CACHED_UPDATE
|
||||
{
|
||||
uint32 cacheIndex;
|
||||
UINT32 cacheIndex;
|
||||
};
|
||||
typedef struct _POINTER_CACHED_UPDATE POINTER_CACHED_UPDATE;
|
||||
|
||||
@@ -80,14 +80,14 @@ typedef void (*pPointerCached)(rdpContext* context, POINTER_CACHED_UPDATE* point
|
||||
struct rdp_pointer_update
|
||||
{
|
||||
rdpContext* context; /* 0 */
|
||||
uint32 paddingA[16 - 1]; /* 1 */
|
||||
UINT32 paddingA[16 - 1]; /* 1 */
|
||||
|
||||
pPointerPosition PointerPosition; /* 16 */
|
||||
pPointerSystem PointerSystem; /* 17 */
|
||||
pPointerColor PointerColor; /* 18 */
|
||||
pPointerNew PointerNew; /* 19 */
|
||||
pPointerCached PointerCached; /* 20 */
|
||||
uint32 paddingB[32 - 21]; /* 21 */
|
||||
UINT32 paddingB[32 - 21]; /* 21 */
|
||||
|
||||
/* internal */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user