Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_global.h « messages - github.com/neutrinolabs/ulalaca-xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e12de213ac365f999cdd0c136cad7117d6bb271d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef ULALACA_CORE_IPC_MESSAGES_GLOBAL_H
#define ULALACA_CORE_IPC_MESSAGES_GLOBAL_H

/**
 * FIXME: naming
 */
#define FIXME_MARK_AS_PACKED_STRUCT __attribute__ ((packed))

struct ULIPCRect {
    short x;
    short y;
    short width;
    short height;
} FIXME_MARK_AS_PACKED_STRUCT;

struct ULIPCHeader {
    uint16_t messageType;

    uint64_t id;
    uint64_t replyTo;

    uint64_t timestamp;

    uint64_t length;
} FIXME_MARK_AS_PACKED_STRUCT;


#endif