mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
22 lines
No EOL
383 B
C
22 lines
No EOL
383 B
C
#ifndef CMD_H
|
|
#define CMD_H
|
|
|
|
#include "wm.h"
|
|
|
|
extern Window win_cmd;
|
|
|
|
void cmd_init(void);
|
|
void cmd_reset(void);
|
|
|
|
// IO Functions
|
|
void cmd_write(const char *str);
|
|
void cmd_putchar(char c);
|
|
void cmd_write_int(int n);
|
|
void cmd_write_hex(uint64_t n);
|
|
int cmd_get_cursor_col(void);
|
|
void cmd_screen_clear(void);
|
|
|
|
void cmd_increment_msg_count(void);
|
|
void cmd_reset_msg_count(void);
|
|
|
|
#endif |