1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-09 06:29:38 +00:00
cc65/include/geos/gprocess.h
Oliver Schmidt 935f68f686 Harmonized the style of including headers from headers.
We surely don't care about some file I/O on host machines in 2018 ;-)
2018-02-02 12:28:22 +01:00

23 lines
557 B
C

/*
GEOS processes (~multitasking) functions
by Maciej 'YTM/Elysium' Witkowiak
*/
#ifndef _GPROCESS_H
#define _GPROCESS_H
#include <geos/gstruct.h>
void __fastcall__ InitProcesses(char number, struct process *proctab);
void __fastcall__ RestartProcess(char number);
void __fastcall__ EnableProcess(char number);
void __fastcall__ BlockProcess(char number);
void __fastcall__ UnblockProcess(char number);
void __fastcall__ FreezeProcess(char number);
void __fastcall__ UnfreezeProcess(char number);
void __fastcall__ Sleep(unsigned jiffies);
#endif