Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: R.a.B.B.i.T on July 06, 2005, 08:18 AM

Title: WritePrivateProfileString() is Evil
Post by: R.a.B.B.i.T on July 06, 2005, 08:18 AM
WPPS crashes my program whenever I try to use it with a path that has spaces in it.  Anyone know (and I know you DO) how to overcome this issue?
Title: Re: WritePrivateProfileString() is Evil
Post by: MyndFyre on July 06, 2005, 02:58 PM
Use the Registry.  WritePrivateProfileString is deprecated.

QuoteNote  This function is provided only for compatibility with 16-bit versions of Windows. Applications should store initialization information in the registry.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/writeprivateprofilestring.asp
Title: Re: WritePrivateProfileString() is Evil
Post by: R.a.B.B.i.T on July 06, 2005, 03:40 PM
I want people to be able to edit the values in the ini files without potentially raping their computer, though.

Also note that MSDN says:
QuoteApplications should store initialization information in the registry.
and what I want to store is configuration, not initialization, information.
Title: Re: WritePrivateProfileString() is Evil
Post by: UserLoser. on July 06, 2005, 04:32 PM

char FileName[MAX_PATH + 1];
GetCurrentDirectory(MAX_PATH - sizeof("\\TestFile.txt"), FileName);
strcat(FileName, "\\TestFile.txt");
printf("FileName = %s\r\n", FileName);
printf("Return = %08x\r\n", WritePrivateProfileString("AppName", "KeyName", "String", FileName));
getch();


That works, now show us what you did so we can tell you how wrong you are (or show output from that if it doesn't work)
Title: Re: WritePrivateProfileString() is Evil
Post by: R.a.B.B.i.T on July 07, 2005, 03:59 PM
Before I was using GetConsoleLine(), trimming the program name, and adding on the file path I wanted to save to (I deleted this code).  It crashed, even when I manually set it to the same place (somewhere on my desktop), as opposed to having the program do that itself (so it wasn't me).  I searched Google for about 1.5 hours until I found I could just set the filepath to ".\\file.ini".  Thanks for your help, though (I forgot to say it was working).

That works, though.
Title: Re: WritePrivateProfileString() is Evil
Post by: MyndFyre on July 07, 2005, 05:02 PM
Note that that only works for an application -- running as a service sets the working directory to %SYSTEMROOT%\System32.
Title: Re: WritePrivateProfileString() is Evil
Post by: Adron on July 07, 2005, 06:03 PM
Quote from: rabbit on July 07, 2005, 03:59 PM
Before I was using GetConsoleLine(), trimming the program name, and adding on the file path I wanted to save to (I deleted this code).  It crashed, even when I manually set it to the same place (somewhere on my desktop), as opposed to having the program do that itself (so it wasn't me).  I searched Google for about 1.5 hours until I found I could just set the filepath to ".\\file.ini".  Thanks for your help, though (I forgot to say it was working).

That works, though.

Sounds like you didn't allocate sufficient space for the string...
Title: Re: WritePrivateProfileString() is Evil
Post by: R.a.B.B.i.T on July 08, 2005, 09:56 AM
//crashes
WritePrivateProfileString("appName", "keyName", "value", "D:\\Program Files\\file.ini");

//doesn't crash
WritePrivateProfileString("appName", "keyName", "value", "D:\\file.ini");


Even that was annoying.