int
glGenSymbolsExt(
 - int datatype, 
- int storagetype, 
- int range, 
- int components, 
) 
    
  GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components)
 
    
  Implementation
  int glGenSymbolsExt(int datatype, int storagetype, int range, int components) {
  final glGenSymbolsExtAsFunction = _glGenSymbolsExt
      .cast<
        NativeFunction<
          Uint32 Function(
            Uint32 datatype,
            Uint32 storagetype,
            Uint32 range,
            Uint32 components,
          )
        >
      >()
      .asFunction<
        int Function(int datatype, int storagetype, int range, int components)
      >();
  return glGenSymbolsExtAsFunction(datatype, storagetype, range, components);
}