#pragma once #include #include namespace glbinding { /** * @brief * The generic pointer to an OpenGL function */ using ProcAddress = void(*)(); /** * @brief * The signature for the getProcAddress function */ using GetProcAddress = std::function; } // namespace glbinding