I should add the actual mir_* source files :).

This commit is contained in:
BrandonSchaefer
2014-11-06 00:21:12 -08:00
committed by Camilla Berglund
parent 10d1d278f3
commit 46c9663ed7
4 changed files with 211 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#include "internal.h"
//////////////////////////////////////////////////////////////////////////
////// GLFW internal API //////
//////////////////////////////////////////////////////////////////////////
int _glfwPlatformInit(void)
{
return 0;
}
void _glfwPlatformTerminate(void)
{
}
const char* _glfwPlatformGetVersionString(void)
{
return "MIR // FIXME (<0_0>)";
}