Setting an Unsigned Integer Value in the Initialization File

The josIniFileSetUInteger call, shown in the following example, sets the unsigned Integer64 key value in the specified section in the JADE initialization file.

int josIniFileSetUInteger(const Character * pIniFileName,
                          const Character * pSection,
                          const Character * pKey,
                          bool              bMultipliers,
                          UInteger64        uValue);

The parameters for this call are listed in the following table.

Parameter Description
pIniFileName Name of the JADE initialization file.
pSection Name of the section in the JADE initialization file.
pKey Name of the unsigned Integer64 key in the JADE initialization file section.
bMultipliers If true, the uValue parameter is checked to see if it is an exact multiplier, if possible, and the value is written with the appropriate multiplier suffix. Multipliers are case-insensitive K, M, or G prefix multipliers. (For details, see "Handling of Parameter Values", in the JADE Initialization File Reference.)
uValue Unsigned Integer64 value that is written to the specified key and section of the JADE initialization file.