【Windows C++笔记】winbase.h


GetPrivateProfileString function

参考网址:https://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 );
View Code

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM