Formatting.

This commit is contained in:
Camilla Berglund 2010-09-09 19:44:43 +02:00
parent 50e6f828d1
commit 5fd3fc71de

View File

@ -358,9 +358,13 @@ extern "C" {
typedef struct _GLFWwindow* GLFWwindow;
/* The video mode structure used by glfwGetVideoModes() */
typedef struct {
int width, height;
int redBits, blueBits, greenBits;
typedef struct
{
int width;
int height;
int redBits;
int blueBits;
int greenBits;
} GLFWvidmode;
/* Function pointer types */