Function get_run_mode : word;
This function returns the mode which the extender is currently running. The function is mostly used to determine if DPMI is supported.
None.
rm Example :
uses go32; begin if get_run_mode=rm_dpmi then writeln('DPMI available') else writeln('No DPMI available'); end.