home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (C) 1993 Marc Stern (internet: stern@mble.philips.be) */
-
- #include "tools.h"
- #include <dos.h>
-
- /*
- * Function : exthandles
- *
- * Topics : Allows MS-DOS program to open 255 handles
- *
- * Warning : - Valid only for DOS >= 3.3
- *
- */
-
- void exthandles( void )
-
- { union REGS regs;
-
- regs.x.bx = 255;
- regs.h.ah = 0x67;
- intdos( ®s, ®s );
- }
-