]> git.sur5r.net Git - cc65/blob - include/geos/gsys.h
Fixed return value of CmpString and CmpFString
[cc65] / include / geos / gsys.h
1 /*
2   GEOS system functions
3
4   ported to small C on 27.10.1999
5   by Maciej 'YTM/Alliance' Witkowiak
6 */
7
8 #ifndef _GSYS_H
9 #define _GSYS_H
10
11 void __fastcall__ FirstInit(void);
12 void __fastcall__ InitForIO(void);
13 void __fastcall__ DoneWithIO(void);
14 void __fastcall__ MainLoop(void);
15 void __fastcall__ EnterDeskTop(void);
16 void __fastcall__ ToBASIC(void);
17 void __fastcall__ Panic(void);
18
19 void __fastcall__ CallRoutine(void *myRoutine);
20
21 int __fastcall__ GetSerialNumber(void);
22 char __fastcall__ GetRandom(void);
23
24 void __fastcall__ SetDevice(char newdev);
25
26 #endif