Changeset 22 for trunk/include/helpers/prfh.h
- Timestamp:
- Jan 14, 2001, 5:42:22 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/prfh.h
r20 r22 49 49 50 50 PSZ prfhQueryKeysForApp(HINI hIni, 51 PSZ pszApp);51 const char *pcszApp); 52 52 53 53 #ifdef __XWPMEMDEBUG__ // setup.h, helpers\memdebug.c 54 54 PSZ prfhQueryProfileDataDebug(HINI hIni, 55 PSZ pszApp,56 PSZ pszKey,55 const char *pcszApp, 56 const char *pcszKey, 57 57 PULONG pcbBuf, 58 58 const char *file, … … 62 62 #else 63 63 PSZ prfhQueryProfileData(HINI hIni, 64 PSZ pszApp,65 PSZ pszKey,66 PULONG pcbBuf);64 const char *pcszApp, 65 const char *pcszKey, 66 PULONG pcbBuf); 67 67 #endif 68 68 69 69 CHAR prfhQueryProfileChar(HINI hini, 70 PSZ pszApp,71 PSZ pszKey,70 const char *pcszApp, 71 const char *pcszKey, 72 72 CHAR cDefault); 73 73 74 LONG prfhQueryColor( PSZ pszKeyName, PSZ pszDefault);74 LONG prfhQueryColor(const char *pcszKeyName, const char *pcszDefault); 75 75 76 76 /* … … 105 105 106 106 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); 111 111 112 112 ULONG prfhCopyApp(HINI hiniSource, 113 PSZ pszSourceApp,113 const char *pcszSourceApp, 114 114 HINI hiniTarget, 115 PSZ pszTargetApp,115 const char *pcszTargetApp, 116 116 PSZ pszErrorKey); 117 117 118 118 BOOL prfhSetUserProfile(HAB hab, 119 PSZ pszUserProfile);119 const char *pcszUserProfile); 120 120 121 121 ULONG prfhINIError(ULONG ulOptions, … … 125 125 126 126 ULONG prfhINIError2(ULONG ulOptions, 127 PSZ pszINI,127 const char *pcszINI, 128 128 FILE* fLog, 129 129 PFNWP fncbError,
Note:
See TracChangeset
for help on using the changeset viewer.