mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
1cc9d13ccf
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 1a8010ca-5511-0410-912e-c29ae57300e0
17 lines
335 B
C
17 lines
335 B
C
#ifndef gtkbits_h_
|
|
#define gtkbits_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void gtkbuild_init(int32_t *argc, char ***argv);
|
|
extern void gtkbuild_exit(int32_t r);
|
|
extern int gtkbuild_msgbox(const char *name, const char *msg);
|
|
extern int gtkbuild_ynbox(const char *name, const char *msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|