mirror of
https://github.com/meekrosoft/fff
synced 2026-01-27 02:11:37 +01:00
Fixed bug for multi-argument functions
This commit is contained in:
@@ -16,6 +16,7 @@ FAKE_VOID_FUNC0(DISPLAY_clear);
|
||||
FAKE_VOID_FUNC1(DISPLAY_output_message, const char*);
|
||||
FAKE_VALUE_FUNC0(int, DISPLAY_get_line_capacity);
|
||||
FAKE_VALUE_FUNC0(int, DISPLAY_get_line_insert_index);
|
||||
FAKE_VALUE_FUNC2(unsigned char, DISPLAY_get_pixel, unsigned int, unsigned int);
|
||||
|
||||
void setup()
|
||||
{
|
||||
|
||||
@@ -6,6 +6,7 @@ void DISPLAY_clear();
|
||||
int DISPLAY_get_line_capacity();
|
||||
int DISPLAY_get_line_insert_index();
|
||||
void DISPLAY_output_message(char * message);
|
||||
unsigned char DISPLAY_get_pixel(unsigned int x, unsigned int y);
|
||||
|
||||
void UI_init()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user