ocarina/include/ocarina/window.h
Bryan Schumaker 155e436259 ocarina: Set window title and icon during init()
I was setting these through other function calls, but it's easier (and
cleaner) to do it all in the initial init() call.
2011-10-22 08:55:32 -04:00

13 lines
232 B
C

#ifndef OCARINA_WINDOW_H
#define OCARINA_WINDOW_H
#include <ocarina/gtk.h>
void window_resize(int, int);
void window_init(string, string);
void window_add(GtkWidget *);
void window_title(string);
void window_icon(string);
#endif