]> icculus.org git repositories - taylor/freespace2.git/blob - include/unix.h
sound.cpp works
[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
43 extern void strlwr (char *str);
44 extern int filelength (int fd);
45 extern int MulDiv (int, int, int);
46
47 extern void Sleep (int miliseconds);
48 extern unsigned long _beginthread (void (*pfuncStart)(void *), unsigned unStackSize, void* pArgList);
49 extern void OutputDebugString (const char *);
50 extern int WSAGetLastError ();
51
52 typedef struct FILETIME_s {
53             DWORD dwLowDateTime;
54             DWORD dwHighDateTime;
55 } FILETIME, *PFILETIME;
56
57 typedef struct {
58         WORD  wFormatTag;
59         WORD  nChannels;
60         DWORD nSamplesPerSec;
61         DWORD nAvgBytesPerSec;
62         WORD  nBlockAlign;
63         WORD  wBitsPerSample;
64         WORD  cbSize;
65 } WAVEFORMATEX;
66 extern void strlwr (char *str);
67 extern int filelength (int fd);
68 extern int MulDiv (int, int, int);
69 #define CRITICAL_SECTION SDL_mutex*
70
71 #define STUB_FUNCTION fprintf(stderr,"STUB: %s at " __FILE__ ", line %d, thread %d\n",__FUNCTION__,__LINE__,getpid())
72
73 #define closesocket(A) close(A)
74 #define CopyMemory(A,B,C) memcpy(A,B,C)
75 #define UINT unsigned int
76 #define SOCKET int
77 #define SOCKADDR_IN struct sockaddr_in
78 #define SOCKADDR struct sockaddr
79 #define LPSOCKADDR struct sockaddr*
80 #define LPHOSTENT struct hostent*
81 #define HOSTENT struct hostent
82 #define LPINADDR struct in_addr*
83 #define LPIN_ADDR struct in_addr*
84 #define SOCKET_ERROR -1
85 #define INVALID_SOCKET -1
86 #define TIMEVAL struct timeval
87 #define SERVENT struct servent
88 #define BOOL int
89
90 #define WSAEALREADY EALREADY
91 #define WSAEINVAL EINVAL
92 #define WSAEWOULDBLOCK EAGAIN
93 #define WSAEISCONN EISCONN
94 #define WSAECONNRESET ECONNRESET
95 #define WSAECONNABORTED ECONNABORTED
96 #define WSAESHUTDOWN ESHUTDOWN
97
98 #endif