• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*!
2 
3 Defines everything used by `gl_generator`.
4 
5 */
6 
7 extern crate libc;
8 
9 pub trait GlFunctionsSource {
get_proc_addr(&self, &str) -> *const libc::c_void10     fn get_proc_addr(&self, &str) -> *const libc::c_void;
11 }
12