Files
cimgui/backend_test/cimgui_extras.cpp

11 lines
285 B
C++
Raw Normal View History

2020-10-16 15:56:11 +02:00
#include "../imgui/imgui.h"
2021-08-22 13:48:02 +02:00
#include "../imgui/backends/imgui_impl_opengl3_loader.h"
2020-10-16 15:56:11 +02:00
//making it accesible for luajit
#ifdef _WIN32
2021-08-22 13:48:02 +02:00
extern "C" __declspec( dllexport ) int Do_gl3wInit(void){ return imgl3wInit();};
2020-10-16 15:56:11 +02:00
#else
2021-08-22 13:48:02 +02:00
extern "C" int Do_gl3wInit(void){ return imgl3wInit();};
2020-10-16 15:56:11 +02:00
#endif