09-10-2024 01:44 AM - edited 09-10-2024 01:46 AM
In LabWindows/CVI 2020, infile.fp has Ini_GetUInt64() function but not Ini_PutUInt64() function.
Is there a way to use the Ini_PutUINT64() feature?
09-10-2024 09:38 AM
You can convert the integer to a string using printf("%llu") and then save the string value to the INI file using Ini_PutString.
09-11-2024 07:14 PM
Thank you, and that would be the best option for now.
Have a nice day~