Starmap image generator, preview 1

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2254 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
avolkov
2006-02-23 21:40:07 +00:00
parent 8c0c87d878
commit 52e061325e
21 changed files with 8761 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef _PORT_H
#define _PORT_H
#if defined(WIN32) && defined(_MSC_VER)
# include <direct.h>
# include <getopt.h>
# define inline __inline
#else
# include <unistd.h>
#endif
#if defined(__GNUC__)
# define inline __inline__
#endif
#define countof(a) ( sizeof(a)/sizeof(*a) )
#endif /* _PORT_H */