Ignore:
Timestamp:
Jan 14, 2001, 5:42:22 PM (25 years ago)
Author:
umoeller
Message:

Misc. updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/prfh.h

    r20 r22  
    4949
    5050    PSZ prfhQueryKeysForApp(HINI hIni,
    51                             PSZ pszApp);
     51                            const char *pcszApp);
    5252
    5353    #ifdef __XWPMEMDEBUG__ // setup.h, helpers\memdebug.c
    5454        PSZ prfhQueryProfileDataDebug(HINI hIni,
    55                                       PSZ pszApp,
    56                                       PSZ pszKey,
     55                                      const char *pcszApp,
     56                                      const char *pcszKey,
    5757                                      PULONG pcbBuf,
    5858                                      const char *file,
     
    6262    #else
    6363        PSZ prfhQueryProfileData(HINI hIni,
    64                                 PSZ pszApp,
    65                                 PSZ pszKey,
    66                                 PULONG pcbBuf);
     64                                 const char *pcszApp,
     65                                 const char *pcszKey,
     66                                 PULONG pcbBuf);
    6767    #endif
    6868
    6969    CHAR prfhQueryProfileChar(HINI hini,
    70                               PSZ pszApp,
    71                               PSZ pszKey,
     70                              const char *pcszApp,
     71                              const char *pcszKey,
    7272                              CHAR cDefault);
    7373
    74     LONG prfhQueryColor(PSZ pszKeyName, PSZ pszDefault);
     74    LONG prfhQueryColor(const char *pcszKeyName, const char *pcszDefault);
    7575
    7676    /*
     
    105105
    106106    ULONG prfhCopyKey(HINI hiniSource,
    107                      PSZ pszSourceApp,
    108                      PSZ pszKey,
    109                      HINI hiniTarget,
    110                      PSZ pszTargetApp);
     107                      const char *pcszSourceApp,
     108                      const char *pcszKey,
     109                      HINI hiniTarget,
     110                      const char *pcszTargetApp);
    111111
    112112    ULONG prfhCopyApp(HINI hiniSource,
    113                       PSZ pszSourceApp,
     113                      const char *pcszSourceApp,
    114114                      HINI hiniTarget,
    115                       PSZ pszTargetApp,
     115                      const char *pcszTargetApp,
    116116                      PSZ pszErrorKey);
    117117
    118118    BOOL prfhSetUserProfile(HAB hab,
    119                             PSZ pszUserProfile);
     119                            const char *pcszUserProfile);
    120120
    121121    ULONG prfhINIError(ULONG ulOptions,
     
    125125
    126126    ULONG prfhINIError2(ULONG ulOptions,
    127                         PSZ pszINI,
     127                        const char *pcszINI,
    128128                        FILE* fLog,
    129129                        PFNWP fncbError,
Note: See TracChangeset for help on using the changeset viewer.