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ファイルを使う

   1  
   2  #include <shlwapi.h>
   3  
   4  BOOL CMyApp::InitInstance()
   5  {
   6    // ... 
   7  
   8    TCHAR szIniPath[MAX_PATH];
   9    VERIFY(::GetModuleFileName(::AfxGetInstanceHandle(), szIniPath, MAX_PATH) != 0);
  10    VERIFY(::PathRenameExtension(szIniPath, _T(".ini")) != FALSE);
  11    ::free(static_cast<LPVOID>(const_cast<LPTSTR>(m_pszProfileName)));
  12    m_pszProfileName = ::_tcsdup(szIniPath);
  13  
  14    // ...
  15  
  16    return TRUE;
  17  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS