/* * COPYRIGHT: GPL - See COPYING in the top level directory * PROJECT: ReactOS Virtual DOS Machine * FILE: ntvdm.h * PURPOSE: Header file to define commonly used stuff * PROGRAMMERS: Aleksandar Andrejevic */ #ifndef _NTVDM_H_ #define _NTVDM_H_ /* INCLUDES *******************************************************************/ #include #include #include #define WIN32_NO_STATUS #include #include #include #include #include #include #include #include #include #include DWORD WINAPI SetLastConsoleEventActive(VOID); /* FUNCTIONS ******************************************************************/ extern HANDLE VdmTaskEvent; VOID DisplayMessage(LPCWSTR Format, ...); #endif // _NTVDM_H_ /* EOF */