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

About this user

NAKAGAWA Masaki http://d.hatena.ne.jp/ikasam_a/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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

#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;
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS