- HAB hab;
- HINI hIni;
- static const wxChar zDefunkt[] = _T("$$default");
-
- if (rFile != "")
- {
- hIni = ::PrfOpenProfile(hab, (PSZ)WXSTRINGCAST rFile);
- if (hIni != 0L)
- {
- ULONG n = ::PrfQueryProfileString( hIni
- ,(PSZ)WXSTRINGCAST rSection
- ,(PSZ)WXSTRINGCAST rEntry
- ,(PSZ)zDefunkt
- ,(void*)wxBuffer
- ,1000
- );
- if (n == 0L || wxStrcmp(wxBuffer, zDefunkt) == 0)
- return FALSE;
- }
- else
- return FALSE;
- }
- else
- {
- ULONG n = ::PrfQueryProfileString( HINI_PROFILE
- ,(PSZ)WXSTRINGCAST rSection
- ,(PSZ)WXSTRINGCAST rEntry
- ,(PSZ)zDefunkt
- ,(void*)wxBuffer
- ,1000
- );
- if (n == 0L || wxStrcmp(wxBuffer, zDefunkt) == 0)
- return FALSE;
- }
- if (*ppValue)
- delete[] (*ppValue);
- *ppValue = copystring(wxBuffer);
- return TRUE;