2013-06-17 00:00:36 +00:00
|
|
|
/*
|
|
|
|
* 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 <theflash AT sdf DOT lonestar DOT org>
|
|
|
|
*/
|
|
|
|
|
2013-06-26 22:58:41 +00:00
|
|
|
#ifndef _NTVDM_H_
|
|
|
|
#define _NTVDM_H_
|
|
|
|
|
2013-06-17 00:00:36 +00:00
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2013-10-27 14:17:34 +00:00
|
|
|
#include <conio.h>
|
|
|
|
|
2013-11-03 20:31:19 +00:00
|
|
|
#define WIN32_NO_STATUS
|
2013-11-16 23:11:54 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <winnls.h>
|
2013-12-23 18:17:29 +00:00
|
|
|
#include <winreg.h>
|
2013-11-16 23:11:54 +00:00
|
|
|
#include <winuser.h>
|
2013-10-27 14:17:34 +00:00
|
|
|
|
2013-12-24 15:30:59 +00:00
|
|
|
#include <vddsvc.h>
|
2013-12-23 18:17:29 +00:00
|
|
|
|
2013-06-22 01:41:51 +00:00
|
|
|
#include <debug.h>
|
2013-06-17 00:00:36 +00:00
|
|
|
|
|
|
|
/* DEFINES ********************************************************************/
|
|
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
|
|
|
VOID DisplayMessage(LPCWSTR Format, ...);
|
2013-06-26 22:58:41 +00:00
|
|
|
|
2013-08-09 18:55:35 +00:00
|
|
|
#endif // _NTVDM_H_
|
2013-06-17 00:00:36 +00:00
|
|
|
|
|
|
|
/* EOF */
|