#ifndef LIBGLESV2_PROC_TABLE_H_
#define LIBGLESV2_PROC_TABLE_H_
#include <EGL/egl.h>
#include <stddef.h>
#include <utility>
namespace egl
{
using ProcEntry = std::pair<const char *, __eglMustCastToProperFunctionPointerType>;
extern const ProcEntry g_procTable[];
extern const size_t g_numProcs;
}
#endif