Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

MFCでレジストリの代わりにINIファイルを使う (See related posts)

#include <shlwapi.h>

BOOL CMyApp::InitInstance()
{
  // ... 

  TCHAR szIniPath[MAX_PATH];
  VERIFY(::GetModuleFileName(::AfxGetInstanceHandle(), szIniPath, MAX_PATH) != 0);
  VERIFY(::PathRenameExtension(szIniPath, _T(".ini")) != FALSE);
  ::free(static_cast<LPVOID>(const_cast<LPTSTR>(m_pszProfileName)));
  m_pszProfileName = ::_tcsdup(szIniPath);

  // ...

  return TRUE;
}

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts