Go to the first, previous, next, last section, table of contents.
#include <dpmi.h> int __dpmi_install_resident_service_provider_callback( __dpmi_callback_info *info );
Please refer to section DPMI Specification for details on DPMI function call operation. Also see section DPMI Overview for general information.
DPMI function AX = 0x0c00 (DPMI 1.0 only). Not supported by CWSDPMI and Windows.
This function installs a resident service provider callback and declares
an intent to provide resident protected-mode services after terminating
with a call to __dpmi_terminate_and_stay_resident
(see section __dpmi_terminate_and_stay_resident).
The various members of info should be filled as follows:
data16
code16
ip
data32
code32
eip
See section __dpmi_get_descriptor, for the details about the layout of the 8-byte segment descriptor.
-1 on error, else zero.
not ANSI, not POSIX
Go to the first, previous, next, last section, table of contents.