home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / EDMI5.ZIP / IFSR0.ZIP / R0GLOBAL.C < prev    next >
C/C++ Source or Header  |  1993-07-01  |  901b  |  34 lines

  1. /******************************************************************************
  2. *******************************************************************************
  3. **
  4. ** EXR0R3 - A ring 0/ring 3 IFS skeleton
  5. ** Copyright (C) 1993 by Andre Asselin
  6. **
  7. ** R0GLOBAL.C - Ring 0 side global variables
  8. **
  9. ** History:
  10. ** 6/22/93 - created
  11. **
  12. *******************************************************************************
  13. ******************************************************************************/
  14.  
  15. #include "r0inc.h"
  16.  
  17. // Save area for IFS command line
  18. char CmdLineSave[256];
  19.  
  20. // Pointer to DevHlp entry point
  21. void (*DevHelp)();
  22.  
  23. // Data block to hold info on control program
  24. CPDATA CPData;
  25.  
  26. // 0=control program is unattached, 1=CP is attached
  27. int CPAttached;
  28.  
  29. // Locks for the control program's buffers
  30. LINADDR Lock1, Lock2;
  31.  
  32. // Process ID of the control program
  33. PID CPPID;
  34.