diff options
author | Vencislav Atanasov <user890104@freemyipod.org> | 2019-07-28 23:31:50 +0300 |
---|---|---|
committer | Vencislav Atanasov <user890104@freemyipod.org> | 2019-07-29 01:59:40 +0300 |
commit | 183e45e8d0b4425bbd41fab37f2a4dc143e1e27c (patch) | |
tree | 5e25c211f6a3bd46dc594123451af00c1bf7ef9c /apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h | |
parent | e19857e712ff54cec08d5a6342a32dae2788cb50 (diff) | |
download | rockbox-183e45e8d0b4425bbd41fab37f2a4dc143e1e27c.tar.gz rockbox-183e45e8d0b4425bbd41fab37f2a4dc143e1e27c.zip |
sdl: Remove platform-specific code
Also nuke the Makefiles of Duke Nukem 3D (pun intended).
Change-Id: If2707cf079bfb9299347f9c5f980780134b6ecda
Diffstat (limited to 'apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h')
-rw-r--r-- | apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h b/apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h deleted file mode 100644 index f35becb401..0000000000 --- a/apps/plugins/sdl/progs/duke3d/Game/src/dukewin.h +++ /dev/null | |||
@@ -1,86 +0,0 @@ | |||
1 | #ifndef _INCL_DUKEWIN_H_ | ||
2 | #define _INCL_DUKEWIN_H_ 1 | ||
3 | |||
4 | #ifndef _MSC_VER /* might need this. */ | ||
5 | typedef int32_t int32_t __int64; | ||
6 | #endif | ||
7 | |||
8 | #pragma warning(disable:4761) | ||
9 | |||
10 | #if USE_SDL | ||
11 | #include "SDL.h" | ||
12 | #endif | ||
13 | |||
14 | #ifdef _DEBUG | ||
15 | #define STUBBED(x) printf("STUB: %s in %s:%d\n", x, __FILE__, __LINE__) | ||
16 | #else | ||
17 | #define STUBBED(x) | ||
18 | #endif | ||
19 | |||
20 | #define PATH_SEP_CHAR '\\' | ||
21 | #define PATH_SEP_STR "\\" | ||
22 | |||
23 | #include <sys/stat.h> | ||
24 | #include <io.h> | ||
25 | #include <assert.h> | ||
26 | |||
27 | struct find_t | ||
28 | { | ||
29 | int32_t handle; | ||
30 | struct _finddata_t data; | ||
31 | uint8_t name[MAX_PATH]; | ||
32 | }; | ||
33 | int _dos_findfirst(uint8_t *filename, int x, struct find_t *f); | ||
34 | int _dos_findnext(struct find_t *f); | ||
35 | |||
36 | struct dosdate_t | ||
37 | { | ||
38 | uint8_t day; | ||
39 | uint8_t month; | ||
40 | unsigned int year; | ||
41 | uint8_t dayofweek; | ||
42 | }; | ||
43 | |||
44 | void _dos_getdate(struct dosdate_t *date); | ||
45 | |||
46 | #ifndef min | ||
47 | #define min(x, y) ((x) < (y) ? (x) : (y)) | ||
48 | #endif | ||
49 | |||
50 | #ifndef max | ||
51 | #define max(x, y) ((x) > (y) ? (x) : (y)) | ||
52 | #endif | ||
53 | |||
54 | #ifdef FP_OFF | ||
55 | #undef FP_OFF | ||
56 | #endif | ||
57 | #define FP_OFF(x) ((int32_t) (x)) | ||
58 | |||
59 | // 64 megs should be enough for anybody. :) --ryan. | ||
60 | #define Z_AvailHeap() ((64 * 1024) * 1024) | ||
61 | |||
62 | #define printchrasm(x,y,ch) printf("%c", (uint8_t ) (ch & 0xFF)) | ||
63 | |||
64 | #define cdecl | ||
65 | |||
66 | #define open _open | ||
67 | #define O_BINARY _O_BINARY | ||
68 | #define O_RDONLY _O_RDONLY | ||
69 | #define O_WRONLY _O_WRONLY | ||
70 | #define O_RDWR _O_RDWR | ||
71 | #define O_TRUNC _O_TRUNC | ||
72 | #define O_CREAT _O_CREAT | ||
73 | #define S_IREAD _S_IREAD | ||
74 | #define S_IWRITE _S_IWRITE | ||
75 | #define S_IRDWR _S_IRDWR | ||
76 | |||
77 | #define S_IRUSR S_IREAD | ||
78 | #define S_IWUSR S_IWRITE | ||
79 | #define S_IRGRP 0 | ||
80 | #define S_IWGRP 0 | ||
81 | |||
82 | #define F_OK 0 | ||
83 | |||
84 | #define HAVE_PRAGMA_PACK 1 | ||
85 | |||
86 | #endif | ||