1
0
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:
Mike Long
2010-12-18 11:24:57 +01:00
parent 7c1ce9c19a
commit 98cde86ef8
4 changed files with 37 additions and 33 deletions

View File

@@ -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()
{

View File

@@ -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()
{