factor/basis/opengl/gl/windows/windows.factor

12 lines
394 B
Factor
Raw Normal View History

2010-04-10 20:24:44 -04:00
USING: alien alien.c-types alien.syntax kernel windows.types ;
2008-01-13 01:58:56 -05:00
IN: opengl.gl.windows
LIBRARY: gl
FUNCTION: HGLRC wglGetCurrentContext ( ) ;
FUNCTION: void* wglGetProcAddress ( c-string name ) ;
: gl-function-context ( -- context ) wglGetCurrentContext ; inline
: gl-function-address ( name -- address ) wglGetProcAddress ; inline
2010-03-31 22:29:04 -04:00
: gl-function-calling-convention ( -- str ) stdcall ; inline