码迷,mamicode.com
首页 > 其他好文 > 详细

WritePrivateProfileString()

时间:2014-08-09 11:31:27      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:文件   ar   div   line   应用   window   ad   app   

在我们写的程序当中,总有一些配置信息需要保存下来,以便完成程序的功能,最简单的办法就是将这些信息写入INI文件中,程序初始化时再读入.具体应用如下:

将信息写入.INI文件中

1.所用的WINAPI函数原型为:
BOOL WritePrivateProfileString(
LPCTSTR lpAppName,
LPCTSTR lpKeyName,
LPCTSTR lpString,
LPCTSTR lpFileName
);
其中各参数的意义
LPCTSTR lpAppName 是INI文件中的一个字段名.
LPCTSTR lpKeyName 是lpAppName下的一个键名,通俗讲就是变量名.
LPCTSTR lpString 是键值,也就是变量的值,不过必须为LPCTSTR型或CString型的.
LPCTSTR lpFileName 是完整的INI文件名,如果没有指定完整路径名,则会在windows目录(默认)查找文件。如果文件没有找到,则函数会在windows目录创建它。

WritePrivateProfileString(),布布扣,bubuko.com

WritePrivateProfileString()

标签:文件   ar   div   line   应用   window   ad   app   

原文地址:http://www.cnblogs.com/suanec/p/3900665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!