]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/opengl/gl/windows/windows.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / basis / opengl / gl / windows / windows.factor
index 5821e3f212ca575d7c2cd6d5b166313366a54524..8bceb865e2aff33c2d6b5f5cb7896ac5b6af59ab 100644 (file)
@@ -4,7 +4,7 @@ IN: opengl.gl.windows
 LIBRARY: gl
 
 FUNCTION: HGLRC wglGetCurrentContext ( ) ;
-FUNCTION: void* wglGetProcAddress ( char* name ) ;
+FUNCTION: void* wglGetProcAddress ( c-string name ) ;
 
 : gl-function-context ( -- context ) wglGetCurrentContext ; inline
 : gl-function-address ( name -- address ) wglGetProcAddress ; inline