Browse Source

Fix some includes for non-MSVC.

Darryl Pogue 13 years ago
parent
commit
46c3c9c049
  1. 2
      Sources/Plasma/CoreLib/HeadSpin.h
  2. 1
      Sources/Plasma/CoreLib/hsTypes.h
  3. 3
      Sources/Plasma/CoreLib/hsUtils.h

2
Sources/Plasma/CoreLib/HeadSpin.h

@ -48,8 +48,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
// Internal Headers // Internal Headers
// These are only ever included here :) // These are only ever included here :)
#include "hsWindows.h"
#include "hsTypes.h" #include "hsTypes.h"
#include "hsWindows.h"
#include "hsUtils.h" #include "hsUtils.h"
#endif #endif

1
Sources/Plasma/CoreLib/hsTypes.h

@ -50,6 +50,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include <cstdlib> #include <cstdlib>
#include <cstdio> #include <cstdio>
#include <cstddef> #include <cstddef>
#include <math.h>
/************************** Basic Macros *****************************/ /************************** Basic Macros *****************************/

3
Sources/Plasma/CoreLib/hsUtils.h

@ -46,7 +46,8 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define _HSUTILS_H #define _HSUTILS_H
#include "HeadSpin.h" #include "HeadSpin.h"
#include <ctype.h> #include <cctype>
#include <cstring>
#include <stdarg.h> #include <stdarg.h>
int hsStrlen(const char src[]); int hsStrlen(const char src[]);

Loading…
Cancel
Save