mirror of
https://github.com/glfw/glfw.git
synced 2025-10-04 05:36:35 +00:00
14 lines
176 B
C++
14 lines
176 B
C++
|
|
|
|
namespace glfw
|
|
{
|
|
namespace
|
|
{
|
|
#include"glfw3.h"
|
|
}
|
|
|
|
GLFWAPI int (&Init)(void) = glfwInit;
|
|
GLFWAPI void (&WindowHint)(int, int) = glfwWindowHint;
|
|
|
|
}
|