Reputation: 499
I am trying to use the function GetPrivateProfileString
in order to read from a .ini
file, but for some reason, ATEasy
does not know this function. What driver/DLL/Something else do I need to import?
Upvotes: 0
Views: 81
Reputation: 499
Found it,
In order to use GetPrivateProfileString, GetPrivateProfileInt, WritePrivateProfileString
functions, you need to add the "Kernel32.dll
" which is located in C:\Windows\system32\Kernel32.dll
Upvotes: 0