/* * 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 #include #define WIN32_NO_STATUS #include #include #include #include #include #include #include #include #include DWORD WINAPI SetLastConsoleEventActive(VOID); #include /* * Activate this line if you want to run NTVDM in standalone mode with: * ntvdm.exe */ // #define STANDALONE /* FUNCTIONS ******************************************************************/ #ifndef STANDALONE extern ULONG SessionId; #endif extern HANDLE VdmTaskEvent; VOID DisplayMessage(LPCWSTR Format, ...); #endif // _NTVDM_H_ /* EOF */