ssheven/ssheven-console.h

29 lines
432 B
C
Raw Normal View History

/*
* ssheven
*
* Copyright (c) 2020 by cy384 <cy384@cy384.com>
* See LICENSE file for details
*/
#pragma once
2021-01-09 22:22:40 +00:00
#include "MacTypes.h"
2020-07-26 15:13:51 +01:00
void console_setup(void);
void draw_screen(Rect* r);
2020-07-26 15:13:51 +01:00
void printf_i(const char* c, ...);
2020-08-22 02:29:34 +01:00
void check_cursor(void);
2020-10-04 17:19:49 +01:00
void mouse_click(Point p, int click);
2020-12-22 00:38:12 +00:00
2020-10-04 17:19:49 +01:00
void update_console_colors(void);
size_t get_selection(char** selection);
2021-01-23 17:45:51 +00:00
void clear_selection(void);
void font_size_change(void);