newrpl/firmware/ui_forms.c

27 lines
463 B
C

/*
* Copyright (c) 2014-2015, Claudio Lapilli and the newRPL Team
* All rights reserved.
* This file is released under the 3-clause BSD license.
* See the file LICENSE.txt that shipped with this distribution.
*/
#include <newrpl.h>
#include <ui.h>
void uiRepaintForm(DRAWSURFACE *scr)
{
// REPAINT VISIBLE PART OF A FORM
UNUSED_ARGUMENT(scr);
}
void uiUpdateForm(WORDPTR form)
{
// UPDATE CONTENTS OF A FORM
UNUSED_ARGUMENT(form);
}