1 /* 2 * COPYRIGHT: GPL - See COPYING in the top level directory 3 * PROJECT: ReactOS Virtual DOS Machine 4 * FILE: subsystems/mvdm/ntvdm/vddsup.h 5 * PURPOSE: Virtual Device Drivers (VDD) Support 6 * PROGRAMMERS: Hermes Belusca-Maito (hermes.belusca@sfr.fr) 7 */ 8 9 #ifndef _VDDSUP_H_ 10 #define _VDDSUP_H_ 11 12 /* FUNCTIONS ******************************************************************/ 13 14 VOID VDDCreateUserHook(USHORT DosPDB); 15 VOID VDDTerminateUserHook(USHORT DosPDB); 16 VOID VDDBlockUserHook(VOID); 17 VOID VDDResumeUserHook(VOID); 18 19 VOID VDDSupInitialize(VOID); 20 21 #endif /* _VDDSUP_H_ */ 22