]> icculus.org git repositories - taylor/freespace2.git/blob - include/unix.h
throw all d3d stuff at opengl
[taylor/freespace2.git] / include / unix.h
1 // unix.h - duplicates some MS defines
2
3 #ifndef _UNIX_H
4 #define _UNIX_H
5
6 #include <stdio.h>
7 #include <sys/types.h>
8 #include <unistd.h>
9 #include "SDL.h"
10
11 #define TRUE 1
12 #define FALSE 0
13 #define DWORD int
14 #define WORD short
15 #define _MAX_FNAME 255
16 #define _MAX_PATH 255
17 #define MAX_PATH 255
18 #define _MAX_DIR 256
19 #define MAX_FILENAME_LENGTH 64
20 #define _cdecl
21 #define __cdecl
22 #define __int64 long long
23 #define LARGE_INTEGER long long
24 #define stricmp strcasecmp
25 #define strnicmp strncasecmp
26 #define _strnicmp strncasecmp
27 #define _isnan isnan
28 #define HANDLE int
29 #define HINSTANCE int
30 #define _getcwd getcwd
31 #define _chdir chdir
32 #define _strlwr strlwr
33 #define _unlink unlink
34 #define _mkdir mkdir
35 #define _hypot hypot
36 #define _access access
37 #define byte unsigned char
38 #define __try try
39 #define __except catch
40 #define LPSTR char *
41 #define PASCAL
42 #define CALLBACK
43
44 extern void strlwr (char *str);
45 extern int filelength (int fd);
46 extern int MulDiv (int, int, int);
47
48 extern void Sleep (int miliseconds);
49 extern unsigned long _beginthread (void (*pfuncStart)(void *), unsigned unStackSize, void* pArgList);
50 extern void OutputDebugString (const char *);
51 extern int WSAGetLastError ();
52
53 typedef struct FILETIME_s {
54             DWORD dwLowDateTime;
55             DWORD dwHighDateTime;
56 } FILETIME, *PFILETIME;
57
58 typedef struct {
59         WORD  wFormatTag;
60         WORD  nChannels;
61         DWORD nSamplesPerSec;
62         DWORD nAvgBytesPerSec;
63         WORD  nBlockAlign;
64         WORD  wBitsPerSample;
65         WORD  cbSize;
66 } WAVEFORMATEX;
67 extern void strlwr (char *str);
68 extern int filelength (int fd);
69 extern int MulDiv (int, int, int);
70 #define CRITICAL_SECTION SDL_mutex*
71
72 #define STUB_FUNCTION fprintf(stderr,"STUB: %s at " __FILE__ ", line %d, thread %d\n",__FUNCTION__,__LINE__,getpid())
73
74 #define closesocket(A) close(A)
75 #define CopyMemory(A,B,C) memcpy(A,B,C)
76 #define UINT unsigned int
77 #define SOCKET int
78 #define SOCKADDR_IN struct sockaddr_in
79 #define SOCKADDR struct sockaddr
80 #define LPSOCKADDR struct sockaddr*
81 #define LPHOSTENT struct hostent*
82 #define HOSTENT struct hostent
83 #define LPINADDR struct in_addr*
84 #define LPIN_ADDR struct in_addr*
85 #define SOCKET_ERROR -1
86 #define INVALID_SOCKET -1
87 #define TIMEVAL struct timeval
88 #define SERVENT struct servent
89 #define BOOL int
90
91 #define WSAEALREADY EALREADY
92 #define WSAEINVAL EINVAL
93 #define WSAEWOULDBLOCK EAGAIN
94 #define WSAEISCONN EISCONN
95 #define WSAECONNRESET ECONNRESET
96 #define WSAECONNABORTED ECONNABORTED
97 #define WSAESHUTDOWN ESHUTDOWN
98
99 // Testing - DDOI
100 #define gr_d3d_bitmap gr_opengl_bitmap
101 #define gr_d3d_init gr_opengl_init
102 #define gr_d3d_activate gr_opengl_activate
103 #define gr_d3d_cleanup gr_opengl_cleanup
104 #define gr_d3d_bitmap_ex gr_opengl_bitmap_ex
105 #define gr_d3d_preload_init gr_opengl_preload_init
106 //#define gr_d3d_FOO gr_opengl_FOO
107
108 #endif