コード例 #1
0
ファイル: registry.cpp プロジェクト: YueLinHo/WinMerge
/* get a string */
bool CRegVal::GetString (LPTSTR pszString, DWORD dwLength) const
{
  return RegValGetString (this, pszString, dwLength);
}
コード例 #2
0
ファイル: registry.cpp プロジェクト: YueLinHo/WinMerge
/* get a string */
bool CRegVal::GetString (CString &sString) const
{
  return RegValGetString (this, sString);
}
コード例 #3
0
ファイル: registry.cpp プロジェクト: sdottaka/winmerge-v2
/* get a string */
bool CRegVal::GetString (LPTSTR _pszString, DWORD _dwLength) const
{
  return RegValGetString (this, _pszString, _dwLength);
}