diff options
author | Karl Schultz <[email protected]> | 2002-01-16 00:48:43 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2002-01-16 00:48:43 +0000 |
commit | 164ce1220232e03660633e16681737782c73059e (patch) | |
tree | 31ff2ee201ee8063f60e7adb5fabdf35683d5efc /progs/demos/pointblast.c | |
parent | 83356781e104cea412da9bd6d1127b56e0d7a6c4 (diff) |
Demo updates for Windows (Robert Bergkvist)
Diffstat (limited to 'progs/demos/pointblast.c')
-rw-r--r-- | progs/demos/pointblast.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/demos/pointblast.c b/progs/demos/pointblast.c index f6486fe55a4..8786e36e3a1 100644 --- a/progs/demos/pointblast.c +++ b/progs/demos/pointblast.c @@ -13,6 +13,9 @@ /* * $Log: pointblast.c,v $ + * Revision 1.3 2002/01/16 00:48:43 kschultz + * Demo updates for Windows (Robert Bergkvist) + * * Revision 1.2 2000/06/27 17:04:43 brianp * fixed compiler warnings * @@ -38,6 +41,9 @@ #include <stdlib.h> #include <string.h> #include <math.h> /* for cos(), sin(), and sqrt() */ +#ifdef _WIN32 +#include <windows.h> +#endif #define GL_GLEXT_LEGACY #include <GL/glut.h> |