lpReturnedString is a buffer in which the function will store the string that you want. You have to declare the buffer, and the function will fill it in.
Example: You have to replace "SectionName" and "KeyName" with appropriate values that are in your *.ini file. Read the Remarks section for that function for more information and examples.
char buf[255];
DWORD nCharacters = GetPrivateProfileString("SectionName", "KeyName", NULL, buf, sizeof(buf), "c:\\mydir\\myfile.ini");