home *** CD-ROM | disk | FTP | other *** search
/ Internet MPEG Audio Archive / IMAA.mdf / util / dos / l3v100n / rsx / source / rsx.h < prev    next >
C/C++ Source or Header  |  1994-01-19  |  945b  |  34 lines

  1. /* Copyright    Rainer Schnitker 92,93 */
  2.  
  3. #ifndef _DPMI_TYPES
  4. #define _DPMI_TYPES
  5.  
  6. typedef unsigned char   BYTE;
  7. typedef BYTE far        *LPBYTE;
  8. typedef unsigned int    WORD;
  9. typedef WORD far        *LPWORD;
  10. typedef unsigned long   DWORD;
  11. typedef DWORD far       *LPDWORD;
  12. #endif
  13.  
  14. #ifndef _PROCESS_H
  15. #include "PROCESS.H"
  16. #endif
  17.  
  18. extern char copro;        /* prg need 387 : 0=no 1=yes 3=emulate */
  19. extern char opt_printall;    /* show all information */
  20. extern char opt_print_syscalls; /* show every sys_call */
  21. extern char opt_memaccess;    /* allows memaccess */
  22. extern char opt_allow;        /* allow execute stack */
  23. extern char opt_stack;        /* allow stack in bss */
  24. extern char opt_debug;        /* debug prg */
  25. extern int  opt_stackval;    /* stack size in KB */
  26. extern char rsx387_in_dosmem;
  27.  
  28. extern int      kread;
  29. extern int      kready;
  30. extern char    **org_env;
  31. extern int    org_envc;
  32. extern WORD    emu_sel;
  33. extern DWORD    copro_struct;
  34.