Sort out the inplib SDL includes

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3684 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2011-09-06 17:25:13 +00:00
parent 12add1f596
commit 24251176b7
2 changed files with 6 additions and 1 deletions
+3 -1
View File
@@ -18,8 +18,10 @@
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <string.h>
#include "input.h"
#include "../inpintrn.h" #include "../inpintrn.h"
#include "libs/graphics/sdl/sdl_common.h" #include "libs/threadlib.h"
#include "libs/input/sdl/vcontrol.h" #include "libs/input/sdl/vcontrol.h"
#include "libs/input/sdl/keynames.h" #include "libs/input/sdl/keynames.h"
#include "libs/memlib.h" #include "libs/memlib.h"
+3
View File
@@ -19,6 +19,9 @@
#ifndef INPUT_H #ifndef INPUT_H
#define INPUT_H #define INPUT_H
#include "port.h"
#include SDL_INCLUDE(SDL.h)
extern void ProcessInputEvent (const SDL_Event *Event); extern void ProcessInputEvent (const SDL_Event *Event);
#endif #endif