Kernel - Misc fixes and debug in VTerm/PTY, AxWin3 starts again
[tpg/acess2.git] / Usermode / Libraries / ld-acess.so_src / include_exp / acess / devices / pty_cmds.h
1 /*
2  * Acess2 User Core
3  * - By John Hodge (thePowersGang)
4  *
5  * acess/devices/pty_cmds.h
6  * - Defintions for 2D/3D command stream PTY output modes
7  */
8 #ifndef _ACESS_DEVICES_PTY_CMDS_H_
9 #define _ACESS_DEVICES_PTY_CMDS_H_
10
11 #include <stdint.h>
12
13 enum
14 {
15         PTY2D_CMD_NOP,
16         PTY2D_CMD_SETCURSORPOS,
17         PTY2D_CMD_SETCURSORBMP,
18         PTY2D_CMD_NEWSRF,
19         PTY2D_CMD_DELSRF,
20         PTY2D_CMD_BLIT,
21         PTY2D_CMD_SEND,
22         PTY2D_CMD_RECV,
23 };
24
25 struct ptycmd_setcursorpos
26 {
27         uint16_t        cmd;
28         uint16_t        x;
29         uint16_t        y;
30 };
31
32 #endif
33

UCC git Repository :: git.ucc.asn.au