Recent changes

2013-04-14 2013-04-02 2013-02-17 2013-01-29 2013-01-20 2013-01-18 2012-12-08 2012-11-06 2012-09-04 2012-08-02

GetPrivateProfileString

指定された .ini ファイル(初期化ファイル)の指定されたセクション内にある、指定されたキーに関連付けられている文字列を取得します。

<code> DWORD GetPrivateProfileString(

 LPCTSTR lpAppName,        // セクション名
 LPCTSTR lpKeyName,        // キー名
 LPCTSTR lpDefault,        // 既定の文字列
 LPTSTR lpReturnedString,  // 情報が格納されるバッファ
 DWORD nSize,              // 情報バッファのサイズ
 LPCTSTR lpFileName        // .ini ファイルの名前

); </code>

http://www.microsoft.com/japan/msdn/library/default.asp?url=/japan/msdn/library/ja/jpsysinf/html/_win32_getprivateprofilestring.asp