【Windows C++笔记】winbase.h

怼烎@ 2023-06-03 02:58 51阅读 0赞

GetPrivateProfileString function

参考网址:https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getprivateprofilestring

ContractedBlock.gif ExpandedBlockStart.gif

  1. 1 DWORD GetPrivateProfileString(
  2. 2 LPCTSTR lpAppName, //section name
  3. 3 LPCTSTR lpKeyName, //key name
  4. 4 LPCTSTR lpDefault, //if key name not be found
  5. 5 LPTSTR lpReturnedString, //returned value
  6. 6 DWORD nSize, //buffer for returned string
  7. 7 LPCTSTR lpFileName //ini file
  8. 8 );

转载于:https://www.cnblogs.com/fishsoup/p/11416558.html

发表评论

表情:
评论列表 (有 0 条评论,51人围观)

还没有评论,来说两句吧...

相关阅读