-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathSPORT.h
More file actions
43 lines (30 loc) · 1.33 KB
/
SPORT.h
File metadata and controls
43 lines (30 loc) · 1.33 KB
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
/*
www.freedo.org
The first and only working 3DO multiplayer emulator.
The FreeDO licensed under modified GNU LGPL, with following notes:
* The owners and original authors of the FreeDO have full right to develop closed source derivative work.
* Any non-commercial uses of the FreeDO sources or any knowledge obtained by studying or reverse engineering
of the sources, or any other material published by FreeDO have to be accompanied with full credits.
* Any commercial uses of FreeDO sources or any knowledge obtained by studying or reverse engineering of the sources,
or any other material published by FreeDO is strictly forbidden without owners approval.
The above notes are taking precedence over GNU LGPL in conflicting situations.
Project authors:
Alexander Troosh
Maxim Grishin
Allen Wright
John Sammons
Felix Lazarev
*/
// SPORT.h: interface for the SPORT class.
//
//////////////////////////////////////////////////////////////////////
#ifndef SPORT_3DO_HEADER
#define SPORT_3DO_HEADER
void _sport_Init(unsigned char *vmem);
//take source for SPORT
int __fastcall _sport_SetSource(unsigned int index);
void __fastcall _sport_WriteAccess(unsigned int index, unsigned int mask);
unsigned int _sport_SaveSize();
void _sport_Save(void *buff);
void _sport_Load(void *buff);
#endif