#include <dpmi.h> int __dpmi_allocate_ldt_descriptors(int count);
Please refer to section DPMI Specification for details on DPMI function call operation. Also see section DPMI Overview for general information.
DPMI function AX = 0x0000
Allocates count descriptors.
-1 on error, else the first descriptor. Use section __dpmi_get_selector_increment_value to figure out the remaining selectors.
not ANSI, not POSIX
short sel = __dpmi_allocate_ldt_descriptors(1);
Go to the first, previous, next, last section, table of contents.