mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 21:14:35 +00:00
21 lines
421 B
C
21 lines
421 B
C
|
#include "internal.h"
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
////// GLFW internal API //////
|
||
|
//////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
int _glfwPlatformInit(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
void _glfwPlatformTerminate(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
const char* _glfwPlatformGetVersionString(void)
|
||
|
{
|
||
|
return "MIR // FIXME (<0_0>)";
|
||
|
}
|
||
|
|