1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-10-08 07:07:25 -04:00
glfw/src/mir_init.c

21 lines
421 B
C
Raw Normal View History

#include "internal.h"
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
int _glfwPlatformInit(void)
{
return 0;
}
void _glfwPlatformTerminate(void)
{
}
const char* _glfwPlatformGetVersionString(void)
{
return "MIR // FIXME (<0_0>)";
}