I'm trying to write an INI file using the WritePrivateProfileString
and WritePrivateProfileStruct
functions.
I found that when the byte count is relatively low, WritePrivateProfileStruct
and GetPrivateProfileStruct
work fine, but with a higher byte count (62554 bytes in my case), the Write
function seems to work but the Get
function doesn't.
I haven't found any size limit for these functions on the MS documentation. Why is this happening?