fix atari build errors
This commit is contained in:
parent
fb1120c212
commit
6cfa3cce63
|
@ -73,6 +73,7 @@
|
|||
#include "atari/osspec.h"
|
||||
#include "atari/search.h"
|
||||
#include "atari/deskmenu.h"
|
||||
#include "atari/download.h"
|
||||
#include "cflib.h"
|
||||
|
||||
#define TODO() (0)/*printf("%s Unimplemented!\n", __FUNCTION__)*/
|
||||
|
@ -254,7 +255,7 @@ gui_window_create(struct browser_window *bw,
|
|||
|
||||
}
|
||||
|
||||
static void gui_window_destroy(struct gui_window *w)
|
||||
void gui_window_destroy(struct gui_window *w)
|
||||
{
|
||||
if (w == NULL)
|
||||
return;
|
||||
|
|
|
@ -167,5 +167,8 @@ char *gui_window_get_title(struct gui_window *gw);
|
|||
|
||||
void gui_window_set_status(struct gui_window *w, const char *text);
|
||||
void gui_window_set_pointer(struct gui_window *gw, gui_pointer_shape shape);
|
||||
void gui_window_destroy(struct gui_window *w);
|
||||
void gui_window_set_scale(struct gui_window *gw, float scale);
|
||||
float gui_window_get_scale(struct gui_window *gw);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue