home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / libsrc / c / dos / bdosptr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-12  |  197 b   |  13 lines

  1. #include <errno.h>
  2. #include <dos.h>
  3.  
  4. bdosptr(int func, void *dx, unsigned al)
  5. {
  6.   union REGS r;
  7.   r.x.dx = dx;
  8.   r.h.ah = func;
  9.   r.h.al = al;
  10.   int86(0x21, &r, &r);
  11.   return r.x.ax;
  12. }
  13.