【Windows C++笔记】winbase.h
GetPrivateProfileString function
参考网址//docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getprivateprofilestring
1 DWORD GetPrivateProfileString(
2 LPCTSTR lpAppName, //section name
3 LPCTSTR lpKeyName, //key name
4 LPCTSTR lpDefault, //if key name not be found
5 LPTSTR lpReturnedString, //returned value
6 DWORD nSize, //buffer for returned string
7 LPCTSTR lpFileName //ini file
8 );
转载于//www.cnblogs.com/fishsoup/p/11416558.html
还没有评论,来说两句吧...