Click here to Skip to main content
15,868,040 members
Articles / Mobile Apps

GetPrivateProfileString for CE

Rate me:
Please Sign up or sign in to vote.
3.00/5 (1 vote)
28 Oct 2009CPOL 18.2K   7  
Loading ini files for Pocket PC requires the unavailable GetPrivateProfileString.

Introduction

This is a function that should be in PocketPC / CE but is not because ini files are considered old news. However, when you're porting C++ applications, you run into this a lot.

Disclaimer: This does not in any means handle all the features of GetPrivateProfileString, nor is it bug free or very well tested. It may destroy the universe etc. etc. All it does currently is read basic ini settings which is all I need it for. I also have wrappers on top of this which handle a lot of functionality which probably should be present here.

Please see GetPrivateProfileString for more details.

I am hoping that others will add to this, one day making it the Win32 equivalent. Here is the code:

C++
static DWORD GetPrivateProfileString(LPCTSTR lpSection, LPCTSTR lpKey, 
       LPTSTR lpDefault, LPTSTR lpBuffer, DWORD dwBufSize, LPCTSTR szPathAndFile) 
{
   fstream clFileOp(szPathAndFile,ios::in);  // File
   string clline;                            // line buffer
   CStringA clkey( lpKey);                   // key in ansii

   if (clFileOp.is_open() == FALSE ) 
   {
      return 1;
   }
   while(!clFileOp.eof()) 
   {
      getline ( clFileOp, clline );
      if ( clline.find( clkey ) != -1 )
      {
         int nEquals = clline.find( "=" );
         if ( nEquals == -1 )
         {
            continue;
         }
         string clres = clline.substr( nEquals +1, clline.length() - nEquals );
         CString clret (  clres.c_str() );
         _tcscpy ( lpBuffer,clret );
         clFileOp.close();
         return 1;
      }
   }

   clFileOp.close();
   return 0;

}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --