glfw: correct C import

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-10-23 10:18:38 -07:00 committed by Stephen Gutekanst
parent da5200359f
commit 6e3687e3aa

View file

@ -15,7 +15,7 @@
//! - Keys that lack a clear US mapping are named "WORLD_x"
//! - For non-printable keys, custom names are used (e.g. "F4", "BACKSPACE", etc.)
const cc = @cImport(@cInclude("GLFW/glfw3.h"));
const cc = @import("c.zig").c;
/// The unknown key
pub const unknown = cc.GLFW_KEY_UNKNOWN;