Set_Install_Flags

This function sets 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>

void _System Set_Install_Flags(

    CARDINAL32   Install_Flags,   /* (I) The new value for the Install Flags */
    CARDINAL32 * Error_Code       /* (O) Address where the error code will be stored */

);

Parameters

Install_Flags
The new value for the Install Flags.
Error_Code
The address of a CARDINAL32 in which to store an error code should an error occur.

Returns

N/A.

Errors

If an error occurs, then the value of the Install Flags will be unchanged, and the value pointed to by Error_Code will be greater than 0.

Side Effects

The value of the Install Flags may be changed.

Notes

None.

16-Bit Equivalent:

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