REXXINI: Difference between revisions
Appearance
	
	
| m →License | m →Links | ||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| Rexx functions for manipulation of Text Based INI Files (used by Win-OS/2). | Rexx functions for manipulation of Text Based INI Files (used by Win-OS/2). | ||
| ;Files | |||
| * [[REXXINI.DLL]] | * [[REXXINI.DLL]] | ||
| ==Functions== | ==Functions== | ||
| *IniLoadFuncs | *IniLoadFuncs - Load this library | ||
| *IniDropFuncs | *IniDropFuncs - Unload this library | ||
| *IniLoad | *IniLoad (section, file) - Load the entire section into a stem variable of the section name | ||
| *IniEnum | *IniEnum (stem, where) - Returns array of fields | ||
| *IniDel | *IniGet (field, where) - Returns string value of field | ||
| *IniSet | *IniBool (field, where) - Returns 0 for False and 1 for True | ||
| *IniEnumSections | *IniDel (field, where) - Deletes the specified field from the section | ||
| *IniClose | *IniSet (field, value, where) - Sets field to the value | ||
| *IniSave | *IniEnumSections (stem, file) - Returns array of section names in stem | ||
| *IniCopy | *IniOpen (section, file) - Returns a handle to use for other functions | ||
| *IniClose (handle) - Close the specified file section | |||
| *IniSave (handle) - Save any changes made to the file section | |||
| *IniCopy (handle, section, file) - Copy all fields in the 'handle' section to the specified 'section' in the specified 'file' | |||
| ==License== | ==License== | ||
| Line 21: | Line 24: | ||
| ==Links== | ==Links== | ||
| *  | * [rxini.zip] | ||
| [[category:REXX Function Library]] | [[category:REXX Function Library]] | ||
Latest revision as of 21:32, 25 July 2023
Rexx functions for manipulation of Text Based INI Files (used by Win-OS/2).
- Files
Functions
- IniLoadFuncs - Load this library
- IniDropFuncs - Unload this library
- IniLoad (section, file) - Load the entire section into a stem variable of the section name
- IniEnum (stem, where) - Returns array of fields
- IniGet (field, where) - Returns string value of field
- IniBool (field, where) - Returns 0 for False and 1 for True
- IniDel (field, where) - Deletes the specified field from the section
- IniSet (field, value, where) - Sets field to the value
- IniEnumSections (stem, file) - Returns array of section names in stem
- IniOpen (section, file) - Returns a handle to use for other functions
- IniClose (handle) - Close the specified file section
- IniSave (handle) - Save any changes made to the file section
- IniCopy (handle, section, file) - Copy all fields in the 'handle' section to the specified 'section' in the specified 'file'
License
- Freeware
- Author: Steven Elliott (SJE Software Pty Ltd)
Links
- [rxini.zip]