Go to the first, previous, next, last section, table of contents.


__dpmi_allocate_ldt_descriptors

Syntax

#include <dpmi.h>

int __dpmi_allocate_ldt_descriptors(int count);

Description

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.

Return Value

-1 on error, else the first descriptor. Use section __dpmi_get_selector_increment_value to figure out the remaining selectors.

Portability

not ANSI, not POSIX

Example

short sel = __dpmi_allocate_ldt_descriptors(1);


Go to the first, previous, next, last section, table of contents.