mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
114 lines
2.6 KiB
C
114 lines
2.6 KiB
C
/*
|
|
* COPYRIGHT: GPL - See COPYING in the top level directory
|
|
* PROJECT: ReactOS Virtual DOS Machine
|
|
* FILE: subsystems/mvdm/ntvdm/ntvdm.h
|
|
* PURPOSE: Header file to define commonly used stuff
|
|
* PROGRAMMERS: Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
|
|
*/
|
|
|
|
#ifndef _NTVDM_H_
|
|
#define _NTVDM_H_
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
|
|
/* PSDK/NDK Headers */
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wingdi.h>
|
|
#include <wincon.h>
|
|
#include <winnls.h>
|
|
#include <winreg.h>
|
|
#include <winuser.h>
|
|
#include <commdlg.h>
|
|
|
|
#include <subsys/win/vdm.h>
|
|
|
|
// Do not include stuff that is only defined
|
|
// for backwards compatibility in nt_vdd.h
|
|
#define NO_NTVDD_COMPAT
|
|
#include <vddsvc.h>
|
|
|
|
DWORD WINAPI SetLastConsoleEventActive(VOID);
|
|
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/kefuncs.h>
|
|
#include <ndk/mmfuncs.h>
|
|
#include <ndk/obfuncs.h>
|
|
#include <ndk/rtlfuncs.h>
|
|
#include <ndk/rtltypes.h>
|
|
|
|
/* PSEH for SEH Support */
|
|
#include <pseh/pseh2.h>
|
|
|
|
/*
|
|
* Activate this line if you want to run NTVDM in standalone mode with:
|
|
* ntvdm.exe <program>
|
|
*/
|
|
// #define STANDALONE
|
|
|
|
/*
|
|
* Activate this line for Win2k compliancy
|
|
*/
|
|
// #define WIN2K_COMPLIANT
|
|
|
|
/*
|
|
* Activate this line if you want advanced hardcoded debug facilities
|
|
* (called interrupts, etc...), that break PC-AT compatibility.
|
|
* USE AT YOUR OWN RISK! (disabled by default)
|
|
*/
|
|
// #define ADVANCED_DEBUGGING
|
|
|
|
#ifdef ADVANCED_DEBUGGING
|
|
#define ADVANCED_DEBUGGING_LEVEL 1
|
|
#endif
|
|
|
|
#define NULL32 0
|
|
|
|
/* VARIABLES ******************************************************************/
|
|
|
|
typedef struct _NTVDM_SETTINGS
|
|
{
|
|
ANSI_STRING BiosFileName;
|
|
ANSI_STRING RomFiles;
|
|
UNICODE_STRING FloppyDisks[2];
|
|
UNICODE_STRING HardDisks[4];
|
|
} NTVDM_SETTINGS, *PNTVDM_SETTINGS;
|
|
|
|
extern NTVDM_SETTINGS GlobalSettings;
|
|
|
|
// Command line of NTVDM
|
|
extern INT NtVdmArgc;
|
|
extern WCHAR** NtVdmArgv;
|
|
|
|
extern HWND hConsoleWnd;
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
/*
|
|
* Interface functions
|
|
*/
|
|
typedef VOID (*CHAR_PRINT)(IN CHAR Character);
|
|
VOID DisplayMessage(IN LPCWSTR Format, ...);
|
|
VOID PrintMessageAnsi(IN CHAR_PRINT CharPrint,
|
|
IN LPCSTR Format, ...);
|
|
|
|
/*static*/ VOID
|
|
UpdateVdmMenuDisks(VOID);
|
|
|
|
BOOL ConsoleAttach(VOID);
|
|
VOID ConsoleDetach(VOID);
|
|
VOID ConsoleReattach(HANDLE ConOutHandle);
|
|
BOOL IsConsoleHandle(HANDLE hHandle);
|
|
VOID MenuEventHandler(PMENU_EVENT_RECORD MenuEvent);
|
|
VOID FocusEventHandler(PFOCUS_EVENT_RECORD FocusEvent);
|
|
|
|
#endif // _NTVDM_H_
|
|
|
|
/* EOF */
|