Ignore:
Timestamp:
Feb 7, 2001, 7:30:59 PM (25 years ago)
Author:
umoeller
Message:

misc. changes

File:
1 edited

Legend:

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

    r22 r33  
    3939    /* common error codes used by the prfh* functions */
    4040
    41     #define PRFERR_DATASIZE 10001   // couldn't query data size for key
    42     #define PRFERR_READ     10003   // couldn't read data from source (PrfQueryProfileData error)
    43     #define PRFERR_WRITE    10004   // couldn't write data to target (PrfWriteProfileData error)
    44     #define PRFERR_APPSLIST 10005   // couldn't query apps list
    45     #define PRFERR_KEYSLIST 10006   // couldn't query keys list
    46     #define PRFERR_ABORTED  10007   // aborted by user
    47     #define PRFERR_QUERY    10007   // PrfQueryProfile failed
     41    #define PRFERR_DATASIZE     10001   // couldn't query data size for key
     42    #define PRFERR_READ         10003   // couldn't read data from source (PrfQueryProfileData error)
     43    #define PRFERR_WRITE        10004   // couldn't write data to target (PrfWriteProfileData error)
     44    #define PRFERR_APPSLIST     10005   // couldn't query apps list
     45    #define PRFERR_KEYSLIST     10006   // couldn't query keys list
     46    #define PRFERR_ABORTED      10007   // aborted by user
     47    #define PRFERR_QUERY        10007   // PrfQueryProfile failed
    4848    #define PRFERR_INVALID_FILE_NAME  10008   // profile names don't contain .INI
     49    #define PRFERR_INVALID_KEY  10009
     50    #define PRFERR_KEY_EXISTS   10010
    4951
    5052    PSZ prfhQueryKeysForApp(HINI hIni,
     
    116118                      PSZ pszErrorKey);
    117119
     120    ULONG prfhRenameKey(HINI hini,
     121                        const char *pcszOldApp,
     122                        const char *pcszOldKey,
     123                        const char *pcszNewApp,
     124                        const char *pcszNewKey);
     125
    118126    BOOL prfhSetUserProfile(HAB hab,
    119127                            const char *pcszUserProfile);
Note: See TracChangeset for help on using the changeset viewer.