mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
321bcc056d
svn path=/branches/GSoC_2016/AHCI/; revision=71203
23 lines
701 B
C
23 lines
701 B
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: subsystems/mvdm/ntvdm/bios/bios32/vidbios32.h
|
|
* PURPOSE: VDM 32-bit Video BIOS
|
|
* PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*
|
|
* NOTE: All of the real code is in bios/vidbios.c
|
|
*/
|
|
|
|
#ifndef _VIDBIOS32_H_
|
|
#define _VIDBIOS32_H_
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
// #define BIOS_VIDEO_INTERRUPT 0x10
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
BOOLEAN VidBios32Initialize(VOID);
|
|
VOID VidBios32Cleanup(VOID);
|
|
|
|
#endif /* _VIDBIOS32_H_ */
|