home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / d / djdev108.zip / INCLUDE / DOS.H < prev    next >
C/C++ Source or Header  |  1992-08-01  |  2KB  |  71 lines

  1. #ifndef _DOS_H_
  2. #define _DOS_H_
  3.  
  4. union REGS {
  5.   struct {
  6.     unsigned long ax;
  7.     unsigned long bx;
  8.     unsigned long cx;
  9.     unsigned long dx;
  10.     unsigned long si;
  11.     unsigned long di;
  12.     unsigned long cflag;
  13.     unsigned long flags;
  14.   } x;
  15.   struct {
  16.     unsigned char al;
  17.     unsigned char ah;
  18.     unsigned short upper_ax;
  19.     unsigned char bl;
  20.     unsigned char bh;
  21.     unsigned short upper_bx;
  22.     unsigned char cl;
  23.     unsigned char ch;
  24.     unsigned short upper_cx;
  25.     unsigned char dl;
  26.     unsigned char dh;
  27.     unsigned short upper_dx;
  28.   } h;
  29. };
  30.  
  31. struct SREGS {
  32.   unsigned short cs;
  33.   unsigned short ds;
  34.   unsigned short es;
  35.   unsigned short fs;
  36.   unsigned short gs;
  37.   unsigned short ss;
  38. };
  39.  
  40. struct ftime {
  41.   unsigned ft_tsec:5;    /* 0-29, double to get real seconds */
  42.   unsigned ft_min:6;    /* 0-59 */
  43.   unsigned ft_hour:5;    /* 0-23 */
  44.   unsigned ft_day:5;    /* 1-31 */
  45.   unsigned ft_month:4;    /* 1-12 */
  46.   unsigned ft_year:7;    /* since 1980 */
  47. };
  48.  
  49. #ifdef __cplusplus
  50. extern "C" {
  51. #endif
  52.  
  53. int bdos(int func, unsigned dx, unsigned al);
  54. int bdosptr(int func, void *dx, unsigned al);
  55. int int86(int ivec, union REGS *in, union REGS *out);
  56. int int86x(int ivec, union REGS *in, union REGS *out, struct SREGS *seg);
  57. int intdos(union REGS *in, union REGS *out);
  58. int intdosx(union REGS *in, union REGS *out, struct SREGS *seg);
  59.  
  60. int getftime(int handle, struct ftime *ftimep);
  61. int setftime(int handle, struct ftime *ftimep);
  62.  
  63. int getcbrk(void);
  64. int setcbrk(int new_value);
  65.  
  66. #ifdef __cplusplus
  67. }
  68. #endif
  69.  
  70. #endif
  71.