home *** CD-ROM | disk | FTP | other *** search
- /*
- ┌────────────────────────────────────────────────────────────────────────────┐
- │jzgetcur.c │
- │Return the cursor location and size. │
- │ │
- │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
- └────────────────────────────────────────────────────────────────────────────┘
- */
-
- jzgetcur(frow,fcol,fstart,fend)
- int *frow,*fcol,*fstart,*fend;
- {
-
- union REGS winreg,woutreg;
- winreg.h.bh = 0; /* page 0 */
- winreg.h.ah = 3;
- int86(0x10,&winreg,&woutreg);
- *fstart = woutreg.h.ch;
- *fend = woutreg.h.cl;
- *frow = woutreg.h.dh;
- *fcol = woutreg.h.dl;
- }