From 719962817efd2739690e6c0461fd6c3e9ae0955a Mon Sep 17 00:00:00 2001 From: Marcel Metz Date: Fri, 7 Oct 2011 00:15:42 -0400 Subject: [PATCH] Added hexadecimal prefix 0x0006 to monitor related constants. --- include/GL/glfw3.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/GL/glfw3.h b/include/GL/glfw3.h index bb5bc5ce..0a07fe84 100644 --- a/include/GL/glfw3.h +++ b/include/GL/glfw3.h @@ -470,13 +470,13 @@ extern "C" { #define GLFW_GAMMA_RAMP_SIZE 256 /* Monitor constants */ -#define GLFW_MONITOR_CONNECTED 0 -#define GLFW_MONITOR_DISCONNECTED 1 -#define GLFW_MONITOR_NAME 0 -#define GLFW_MONITOR_PHYSICAL_WIDTH 1 -#define GLFW_MONITOR_PHYSICAL_HEIGHT 2 -#define GLFW_MONITOR_SCREEN_POS_X 3 -#define GLFW_MONITOR_SCREEN_POS_Y 4 +#define GLFW_MONITOR_NAME 0x00060000 +#define GLFW_MONITOR_PHYSICAL_WIDTH 0x00060001 +#define GLFW_MONITOR_PHYSICAL_HEIGHT 0x00060002 +#define GLFW_MONITOR_SCREEN_POS_X 0x00060003 +#define GLFW_MONITOR_SCREEN_POS_Y 0x00060004 +#define GLFW_MONITOR_CONNECTED 0x00061000 +#define GLFW_MONITOR_DISCONNECTED 0x00061001 /************************************************************************* * Typedefs