1 /* 2 * COPYRIGHT: GPL - See COPYING in the top level directory 3 * PROJECT: ReactOS Virtual DOS Machine 4 * FILE: subsystems/mvdm/ntvdm/bios/bios32/vidbios32.h 5 * PURPOSE: VDM 32-bit Video BIOS 6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr) 7 * 8 * NOTE: All of the real code is in bios/vidbios.c 9 */ 10 11 #ifndef _VIDBIOS32_H_ 12 #define _VIDBIOS32_H_ 13 14 /* DEFINES ********************************************************************/ 15 16 // #define BIOS_VIDEO_INTERRUPT 0x10 17 18 /* FUNCTIONS ******************************************************************/ 19 20 BOOLEAN VidBios32Initialize(VOID); 21 VOID VidBios32Cleanup(VOID); 22 23 #endif /* _VIDBIOS32_H_ */ 24