about summary refs log tree commit diff stats
path: root/kernel.soso/commonuser.h
blob: d040960303e2c14d30603699b8607d38df75657d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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