OSDN Git Service

(none)
[hos/hos-v4a.git] / aplfw / driver / console / vt100 / vt100drv.h
1
2
3 #include "system/file/console.h"
4 #include "system/file/drvobj.h"
5
6
7
8 typedef struct c_vt100drv
9 {
10         C_DRVOBJ                DrvObj;
11
12         HANDLE                  hTty;
13         int                             iEscState;
14         int                             iEscNum;
15
16 } C_VT100DRV;
17
18
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22
23 void      Vt100Drv_Create(C_VT100DRV *self, HANDLE hTty);                                       /**< コンストラクタ */
24 void      Vt100Drv_Delete(C_DRVOBJ *pDrvObj);                                                           /**< デストラクタ */
25
26 #ifdef __cplusplus
27 }
28 #endif
29