Mod .INI's w/WriteProf..
17-Oct-91 11:11:52
Sb: #3466-Mod .INI's w/WriteProf..
Fm: Brightwork Development 75300,1415
To: Don Funk 76701,155
Don,
You're exactly right, that is exactly what I need to do. Here's how I got
around it without opening up an ASCII file (using the API is much easier):
I need:
device=<existing_device> device=<my_new_device>
So I compromised and did:
device=<existing_device>, <my_new_device>
Basically I did a GetPrivateProfileString(..); for the first device
keyname. I then appended ", <my_new_device>" to the end of the string, and
wrote the result back with WritePrivateProfileString(..);
Tom Sollas