01-21-2024 10:40 AM
I just want to share my library to simplify working with ini files.
One function can read or write the whole cluster (typedef), so you don't have to create all keys manually.
Moreover, if the function doesn't find the corresponding key, it adds it to the file, so the configuration structure will always be up to date.
The work looks like in the image
The source code (LabVIEW 2015) is here:
https://github.com/artemshgmailcom/LabVIEW_ini_lib
01-21-2024 01:21 PM
Is this a little polished version of OpenG's variant of the INI toolkit?
https://www.vipm.io/package/oglib_variantconfig/
01-21-2024 03:24 PM
You're partly right. When I made this library for myself, I didn't realize that something like this had been done.
Nor it is not "polished", but made in its own way, there is a difference in the form of array recording, but it is not essential. So if I had known about this library, I wouldn't have wasted my time creating my own.