[NTVDM]
[reactos.git] / subsystems / ntvdm / ntvdm.c
index f20457c..351352a 100644 (file)
@@ -6,7 +6,17 @@
  * PROGRAMMERS:     Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
  */
 
+/* INCLUDES *******************************************************************/
+
 #include "ntvdm.h"
+#include "emulator.h"
+#include "bios.h"
+#include "dos.h"
+#include "timer.h"
+#include "pic.h"
+#include "ps2.h"
+
+/* PUBLIC VARIABLES ***********************************************************/
 
 BOOLEAN VdmRunning = TRUE;
 LPVOID BaseAddress = NULL;
@@ -22,6 +32,8 @@ LPCWSTR ExceptionName[] =
     L"FPU Not Available"
 };
 
+/* PUBLIC FUNCTIONS ***********************************************************/
+
 VOID DisplayMessage(LPCWSTR Format, ...)
 {
     WCHAR Buffer[256];