Subversion Repositories Games.Carmageddon

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifdef __MSDOS__ // Pierre-Marie Baty -- compile guard
  2.  
  3. #include "eventq.h"
  4. #include "harness/trace.h"
  5.  
  6. int _DOSEventQEnabled;
  7. host_real_memory _DOSEventMemory;
  8.  
  9. // IDA: br_error __cdecl DOSEventBegin()
  10. br_error DOSEventBegin(void) {
  11.     host_info hi;
  12.     int s;
  13.     LOG_TRACE("()");
  14.     NOT_IMPLEMENTED();
  15. }
  16.  
  17. // IDA: void __cdecl DOSEventEnd()
  18. void DOSEventEnd(void) {
  19.     LOG_TRACE("()");
  20.     NOT_IMPLEMENTED();
  21. }
  22.  
  23. // IDA: br_boolean __cdecl DOSEventWait(dosio_event *event, br_boolean block)
  24. br_boolean DOSEventWait(dosio_event* event, br_boolean block) {
  25.     int t;
  26.     LOG_TRACE("(%p, %d)", event, block);
  27.     NOT_IMPLEMENTED();
  28. }
  29.  
  30. #endif // __MSDOS__
  31.