Changeset 50 for trunk/src/derelict/opengl/extension/ext/blend_color.d
- Timestamp:
- 07/15/07 23:12:21 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/derelict/opengl/extension/ext/blend_color.d
r32 r50 82 82 } 83 83 84 private const char[] Funcs = 85 " 86 typedef void function(GLclampf, GLclampf, GLclampf, GLclampf) pfglBlendColorEXT; 87 "; 88 84 89 version(Windows) 85 90 { 86 extern(Windows): 91 extern(Windows): mixin(Funcs); 87 92 } 88 93 else 89 94 { 90 extern(C): 95 extern(C): mixin(Funcs); 91 96 } 92 97 93 typedef void function(GLclampf, GLclampf, GLclampf, GLclampf) pfglBlendColorEXT;94 98 pfglBlendColorEXT glBlendColorEXT;
