libui/ui_unix.h

26 lines
575 B
C
Raw Normal View History

2015-08-27 11:29:19 -05:00
// 7 april 2015
/*
This file assumes that you have included <gtk/gtk.h> and "ui.h" beforehand. It provides API-specific functions for interfacing with foreign controls on Unix systems that use GTK+ to provide their UI (currently all except Mac OS X and Haiku).
2015-08-27 11:29:19 -05:00
*/
#ifndef uiprivIncludeGuard_ui_unix_h
#define uiprivIncludeGuard_ui_unix_h
2015-08-27 11:29:19 -05:00
2015-11-16 09:55:44 -06:00
#ifdef __cplusplus
extern "C" {
#endif
struct uiControlOSVtable {
size_t Size;
2020-05-31 12:37:56 -05:00
GtkWidget *(*Handle)(uiControl *c, void *implData);
};
2020-05-31 12:37:56 -05:00
uiprivExtern GtkWidget *uiUnixControlHandle(uiControl *c);
2015-11-16 09:55:44 -06:00
#ifdef __cplusplus
}
#endif
2015-08-27 11:29:19 -05:00
#endif