mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-11 12:31:00 +00:00
12 lines
293 B
C
12 lines
293 B
C
|
typedef struct _GtkWidget GtkWidget;
|
||
|
typedef struct _GtkButton GtkButton;
|
||
|
|
||
|
namespace callbacks {
|
||
|
|
||
|
void OnDestroy(GtkWidget*, gpointer);
|
||
|
void OnExportClicked(GtkButton*, gpointer);
|
||
|
void OnAddMaterial(GtkButton*, gpointer);
|
||
|
void OnRemoveMaterial(GtkButton*, gpointer);
|
||
|
|
||
|
}// callbacks
|