-
Notifications
You must be signed in to change notification settings - Fork 0
/
includes.h
executable file
·45 lines (40 loc) · 1.08 KB
/
includes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**************************************************************************************************
* FILENAME: includes.h
* PURPOSE: Main include file, includes all other
* CREATED: 21-Jun-2004
* MODIFIED: 26-Dec-2006
* AUTHOR: SGL
**************************************************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdarg.h>
#include <time.h>
#include <math.h>
#ifdef __amigaos4__
#include <sys/time.h>
#endif
#include <proto/intuition.h>
#include <proto/graphics.h>
#include <proto/exec.h>
#include <proto/muimaster.h>
#include <proto/gadtools.h>
#include <proto/dos.h>
#include <proto/bsdsocket.h>
#include <proto/timer.h>
#include <proto/icon.h>
#include <devices/timer.h>
#include <workbench/startup.h>
#ifndef __amigaos4__
#include <clib/alib_protos.h>
#include <libraries/mui.h>
#include <math.h>
#define int8 long
#include <stdio.h>
#endif
// And include now also our own headerfiles:
#include "proto.h"
#include "global_defines.h"
#include "structs.h"
#include "netmon_rev.h"