sourcemod/tools/daemon/smud.h
David Anderson 2e7b6b5ba5 jit refactoring branch
--HG--
branch : refac-jit
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/branches/refac-jit%402369
2008-07-06 04:49:55 +00:00

26 lines
533 B
C

#ifndef _INCLUDE_SMUD_MAIN_H_
#define _INCLUDE_SMUD_MAIN_H_
#include <stdio.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <fcntl.h>
#include <errno.h>
#define closesocket close
#define NUM_FILES 5
extern char fileNames[NUM_FILES][30];
extern void *fileLocations[NUM_FILES];
extern int fileLength[NUM_FILES];
#endif //_INCLUDE_SMUD_MAIN_H_