Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dos/pdcsetsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ int PDC_curs_set(int visibility)

void PDC_set_title(const char *title)
{
INTENTIONALLY_UNUSED_PARAMETER(title);
PDC_LOG(("PDC_set_title() - called: <%s>\n", title));
}

Expand Down
1 change: 1 addition & 0 deletions dosvga/pdckbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ static const unsigned short button_map[3] = {0, 2, 1};

void PDC_set_keyboard_binary(bool on)
{
INTENTIONALLY_UNUSED_PARAMETER(on);
PDC_LOG(("PDC_set_keyboard_binary() - called\n"));

#ifdef __DJGPP__
Expand Down
8 changes: 8 additions & 0 deletions dosvga/pdcscrn.c
Original file line number Diff line number Diff line change
Expand Up @@ -1370,22 +1370,26 @@ static int _vgafont_open(void)

static void _vgafont_close(bool bold)
{
INTENTIONALLY_UNUSED_PARAMETER(bold);
/* no operation */
}

static unsigned _vgafont_char_width(bool bold)
{
INTENTIONALLY_UNUSED_PARAMETER(bold);
return 8;
}

static unsigned _vgafont_char_height(bool bold)
{
INTENTIONALLY_UNUSED_PARAMETER(bold);
return 14;
}

static const unsigned char *_vgafont_glyph_data(bool bold, unsigned long pos)
{
unsigned pos437;
INTENTIONALLY_UNUSED_PARAMETER(bold);
#ifdef PDC_WIDE
pos437 = _unicode_to_cp437(pos);
#else
Expand Down Expand Up @@ -1734,4 +1738,8 @@ and probably never will. */
void PDC_set_resize_limits( const int new_min_lines, const int new_max_lines,
const int new_min_cols, const int new_max_cols)
{
INTENTIONALLY_UNUSED_PARAMETER(new_min_lines);
INTENTIONALLY_UNUSED_PARAMETER(new_max_lines);
INTENTIONALLY_UNUSED_PARAMETER(new_min_cols);
INTENTIONALLY_UNUSED_PARAMETER(new_max_cols);
}
1 change: 1 addition & 0 deletions dosvga/pdcsetsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ int PDC_curs_set(int visibility)

void PDC_set_title(const char *title)
{
INTENTIONALLY_UNUSED_PARAMETER(title);
PDC_LOG(("PDC_set_title() - called: <%s>\n", title));
}

Expand Down