aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/win32/ffi.rs')
-rw-r--r--src/win32/ffi.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/win32/ffi.rs b/src/win32/ffi.rs
index 5662a98..317935d 100644
--- a/src/win32/ffi.rs
+++ b/src/win32/ffi.rs
@@ -8,22 +8,22 @@ use libc;
/// WGL bindings
pub mod wgl {
generate_gl_bindings! {
- api: wgl,
- profile: core,
- version: 1.0,
- generator: static
+ api: "wgl",
+ profile: "core",
+ version: "1.0",
+ generator: "static"
}
}
/// Functions that are not necessarly always available
pub mod wgl_extra {
generate_gl_bindings! {
- api: wgl,
- profile: core,
- version: 1.0,
- generator: struct,
+ api: "wgl",
+ profile: "core",
+ version: "1.0",
+ generator: "struct",
extensions: [
- WGL_ARB_create_context
+ "WGL_ARB_create_context"
]
}
}