diff options
Diffstat (limited to 'src/include/ipxe')
| -rw-r--r-- | src/include/ipxe/ansiesc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/ipxe/ansiesc.h b/src/include/ipxe/ansiesc.h index e84545769..c1c74481d 100644 --- a/src/include/ipxe/ansiesc.h +++ b/src/include/ipxe/ansiesc.h @@ -124,6 +124,12 @@ struct ansiesc_context { */ #define ANSIESC_LOG_PRIORITY 'p' +/** Show cursor */ +#define ANSIESC_DECTCEM_SET ( ( '?' << 8 ) | 'h' ) + +/** Hide cursor */ +#define ANSIESC_DECTCEM_RESET ( ( '?' << 8 ) | 'l' ) + /** @} */ extern int ansiesc_process ( struct ansiesc_context *ctx, int c ); |
