-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathvdlp.h
More file actions
42 lines (30 loc) · 1.32 KB
/
vdlp.h
File metadata and controls
42 lines (30 loc) · 1.32 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
/*
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
*/
// VDLP.h: interface for the CVDLP class.
//
//////////////////////////////////////////////////////////////////////
#ifndef VDLP_3DO_HEADER
#define VDLP_3DO_HEADER
#include "freedocore.h"
void _vdl_Init(unsigned char *vramstart);
void _vdl_ProcessVDL( unsigned int addr);
void _vdl_DoLineNew(int line, VDLFrame *frame);
unsigned int _vdl_SaveSize();
void _vdl_Save(void *buff);
void _vdl_Load(void *buff);
#endif