home *** CD-ROM | disk | FTP | other *** search
/ Media Share 13 / mediashare_13.zip / mediashare_13 / ZIPPED / PROGRAM / DDJ9403A.ZIP / UC394.ZIP / GATEVIEW.H < prev    next >
Text File  |  1993-12-04  |  2KB  |  72 lines

  1. /**********************************************
  2. GATEVIEW.H
  3. by Alex Shmidt
  4. **********************************************/
  5.  
  6. // controls
  7. #define IDLB_PDIR               101
  8. #define IDPB_PDIR               102
  9. #define IDPB_GDT                103
  10. #define IDPB_IDT                104
  11. #define IDPB_LDT                105
  12. #define IDPB_TASK               106
  13. #define IDPB_CRDR               107
  14. #define IDPB_VM                 108
  15. #define IDPB_VXD                109
  16. #define IDS_HDR                 110
  17. #define IDS_GRAY                111
  18. #define IDS_EVENTS              112
  19.  
  20. #define IDLB_EVENT              201
  21. #define IDPB_CLEAR              202
  22. #define IDPB_STOPVM             203
  23. #define IDPB_HELP               204
  24. #define IDPB_EXIT               205
  25.  
  26. char *control_msg[] = {
  27.    "Sys_Critical_Init",       //0
  28.    "Device_Init",             //1
  29.    "Init_Complete",           //2
  30.    "Sys_VM_Init",             //3
  31.    "Sys_VM_Terminate",        //4
  32.    "System_Exit",             //5
  33.    "Sys_Critical_Exit",       //6
  34.    "Create_VM",               //7
  35.    "VM_Critical_Init",        //8
  36.    "VM_Init",                 //9
  37.    "VM_Terminate",            //a
  38.    "VM_Not_Executeable",      //b
  39.    "Destroy_VM",              //c
  40.    "VM_Suspend",              //d
  41.    "VM_Resume",               //e
  42.    "Set_Device_Focus",        //f
  43.    "Begin_Message_Mode",      //10
  44.    "End_Message_Mode",        //11
  45.    "Reboot_Processor",        //12
  46.    "Query_Destroy",           //13
  47.    "Debug_Query",             //14
  48.    "Begin_PM_App",            //15
  49.    "End_PM_App",              //16
  50.    "Device_Reboot_Notify",    //17
  51.    "Crit_Reboot_Notify",      //18
  52.    "Close_VM_Notify ",        //19
  53.    "Power_Event" };           //1a
  54.  
  55. char *CB_Flags[17]={"VMStat_Exclusive",
  56.                "VMStat_Background",
  57.                "VMStat_Creating",
  58.                "VMStat_Suspended",
  59.                "VMStat_Not_Executeable",
  60.                "VMStat_PM_Exec",
  61.                "VMStat_PM_App",
  62.                "VMStat_PM_Use32",
  63.                "VMStat_VxD_Exec",
  64.                "VMStat_High_Pri_Back",
  65.                "VMStat_Blocked",
  66.                "VMStat_Awakening",
  67.                "VMStat_PageableV86",
  68.                "VMStat_V86IntsLocked",
  69.                "VMStat_TS_Sched",
  70.                "VMStat_Idle",
  71.                "VMStat_Closing"};
  72.