Get_Install_Flags

This function returns the value of the Install Flags. The Install Flags reside in a 32-bit field in the LVM dataspace. These flags are not used by LVM, thereby leaving the OS/2 install program free to use them for whatever it wants.


#include <lvm_intr.h>

CARDINAL32 _System Get_Install_Flags(

    CARDINAL32 * Error_Code   /* (O) Address where the error code will be stored */

);

Parameters

Error_Code
The address of a CARDINAL32 in which to store an error code should an error occur.

Returns

The function returns the current value of the Install Flags.

Errors

If an error occurs, the value pointed to by Error_Code will be greater than 0.

Side Effects

None.

Notes

None.

16-Bit Equivalent:

void _Far16 _Pascal _loadds Get_Install_Flags16(
        CARDINAL32 * _Seg16 Install_Flags,
        CARDINAL32 * _Seg16 Error_Code
);