removed unneeded 'extern' keyword for function declarations in header files
[rocksndiamonds.git] / src / game_sp / Display.h
index d80a07d9f5e01f35cf01c184d0d7f0f0c74714f3..adff5e8bfb887893f2999ea960a0c2c52c44866d 100644 (file)
@@ -5,26 +5,20 @@
 #ifndef DISPLAY_H
 #define DISPLAY_H
 
-#include "vb_types.h"
-#include "vb_defs.h"
-#include "vb_vars.h"
-#include "vb_lib.h"
-
 #include "global.h"
 
 
 extern int ScreenScrollXPos, ScreenScrollYPos;
 
-extern int ShowPanel;
-extern int ExplosionShake;
+extern int ExplosionShake, ExplosionShakeMurphy;
 extern boolean NoDisplayFlag;
 
-extern long DisplayMinX, DisplayMaxX, DisplayWidth;
-extern long DisplayMinY, DisplayMaxY, DisplayHeight;
+extern int DisplayMinX, DisplayMaxX;
+extern int DisplayMinY, DisplayMaxY;
 
-extern void subDisplayLevel();
-extern void ScrollTo(int, int);
-extern void ScrollTowards(int, int);
-extern void SoftScrollTo(int, int, long, int);
+void subDisplayLevel(void);
+void ScrollTo(int, int);
+void ScrollTowards(int, int);
+void SoftScrollTo(int, int, int, int);
 
 #endif /* DISPLAY_H */