mirror of
https://github.com/libretro/RACE.git
synced 2024-11-23 08:59:49 +00:00
35 lines
914 B
C
35 lines
914 B
C
/*---------------------------------------------------------------------------
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version. See also the license.txt file for
|
|
* additional informations.
|
|
*---------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef STDAFX_H
|
|
#define STDAFX_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define DWORD unsigned int
|
|
|
|
#define _u8 unsigned char
|
|
#define Uint8 unsigned char
|
|
#define _u16 unsigned short
|
|
#define _u32 unsigned int
|
|
|
|
#define BOOL int
|
|
#define FALSE 0
|
|
#define TRUE (!0)
|
|
|
|
#ifdef _WIN32
|
|
#define path_default_slash() "\\"
|
|
#define path_default_slash_c() '\\'
|
|
#else
|
|
#define path_default_slash() "/"
|
|
#define path_default_slash_c() '/'
|
|
#endif
|
|
|
|
#endif /* STDAFX_H */
|