mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
462f4b0bc9
Hex editor is now purely reactive, with no idle drawing.
14 lines
263 B
C
14 lines
263 B
C
/*! \file hex.h
|
|
\brief Hex editor application.
|
|
*/
|
|
|
|
//! Enter the hex editor.
|
|
void hex_init();
|
|
//! Exit the hex editor.
|
|
int hex_exit();
|
|
//! Draw the screen.
|
|
void hex_draw(int forced);
|
|
|
|
//! A button has been pressed for the hex editor.
|
|
int hex_keypress(char ch);
|