about summary refs log tree commit diff stats
path: root/tools/iso/kernel.soso/commonuser.h
blob: 3a488ea86672cc809e4f688b5009b1e028a38822 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef COMMONUSER_H
#define COMMONUSER_H

typedef struct SosoMessage {
    int messageType;
    int parameter1;
    int parameter2;
    int parameter3;
} SosoMessage;

typedef struct TtyUserBuffer {
    unsigned short lineCount;
    unsigned short columnCount;
    unsigned short currentLine;
    unsigned short currentColumn;
    unsigned char* buffer;
} TtyUserBuffer;

#endif // COMMONUSER_H