20 lines
346 B
C
20 lines
346 B
C
#ifdef TARGET_OS_OSX
|
|
#include <stdlib.h>
|
|
#else
|
|
#include <malloc.h>
|
|
#endif
|
|
|
|
#define GTK_DECLARE_FUNCS
|
|
#include "gtk-imports.h"
|
|
|
|
void loadGtkFunctions(void (*loader)(const char *funcname, void **func, void *user_data), void *user_data)
|
|
{
|
|
#undef GTK_IMPORTS_H
|
|
#undef GTK_DECLARE_FUNCS
|
|
#undef DECL
|
|
#define GTK_LOAD_FUNCS
|
|
#include "gtk-imports.h"
|
|
}
|
|
|
|
|