Changeset d3109ff in mainline for uspace/srv/hid/remcons/remcons.h
- Timestamp:
- 2024-09-24T17:59:36Z (8 months ago)
- Branches:
- master
- Children:
- 6a753a9c
- Parents:
- 3fcea34
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/remcons/remcons.h
r3fcea34 rd3109ff 1 1 /* 2 * Copyright (c) 2024 Jiri Svoboda 2 3 * Copyright (c) 2012 Vojtech Horky 3 4 * All rights reserved. … … 36 37 #define REMCONS_H_ 37 38 39 #include <stdbool.h> 40 #include <vt/vt100.h> 41 #include "user.h" 42 38 43 #define NAME "remcons" 39 44 #define NAMESPACE "term" 45 46 typedef struct { 47 telnet_user_t *user; 48 vt100_state_t *vt; 49 bool enable_ctl; 50 } remcons_t; 40 51 41 52 #endif
Note:
See TracChangeset
for help on using the changeset viewer.