/* * COPYRIGHT: GPL - See COPYING in the top level directory * PROJECT: ReactOS Virtual DOS Machine * FILE: subsystems/mvdm/ntvdm/hardware/parallel.h * PURPOSE: PC Speaker emulation * PROGRAMMERS: Simone Mario Lombardo */ #ifndef _PARALLEL_H_ #define _PARALLEL_H_ VOID ParallelInitialize(VOID); VOID ParallelCleanup(VOID); VOID WINAPI ParallelWritePort(USHORT Port, BYTE Data); BYTE WINAPI ParallelReadPort(USHORT Port); #endif