[NTVDM]: We know that .h files are header files ;)
[reactos.git] / subsystems / ntvdm / ps2.h
index 2b426b1..312a57e 100644 (file)
@@ -2,7 +2,7 @@
  * COPYRIGHT:       GPL - See COPYING in the top level directory
  * PROJECT:         ReactOS Virtual DOS Machine
  * FILE:            ps2.h
  * COPYRIGHT:       GPL - See COPYING in the top level directory
  * PROJECT:         ReactOS Virtual DOS Machine
  * FILE:            ps2.h
- * PURPOSE:         PS/2 controller emulation (header file)
+ * PURPOSE:         PS/2 controller emulation
  * PROGRAMMERS:     Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
  */
 
  * PROGRAMMERS:     Aleksandar Andrejevic <theflash AT sdf DOT lonestar DOT org>
  */
 
 
 /* FUNCTIONS ******************************************************************/
 
 
 /* FUNCTIONS ******************************************************************/
 
-BYTE KeyboardReadStatus();
-VOID KeyboardWriteCommand(BYTE Command);
-BYTE KeyboardReadData();
-VOID KeyboardWriteData(BYTE Data);
-VOID CheckForInputEvents();
+BOOLEAN PS2Initialize(HANDLE ConsoleInput);
+VOID PS2Cleanup(VOID);
+BYTE WINAPI PS2ReadPort(ULONG Port);
+VOID WINAPI PS2WritePort(ULONG Port, BYTE Data);
+VOID GenerateKeyboardInterrupts(VOID);
 
 
-#endif
+#endif // _PS2_H_
+
+/* EOF */