Ignore:
Timestamp:
Feb 21, 2002, 8:24:22 PM (23 years ago)
Author:
umoeller
Message:

misc. updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/xprf.c

    r133 r142  
    157157 */
    158158
    159 PXINIAPPDATA FindApp(PXINI pXIni,           // in: profile opened with xprfOpenProfile
    160                      const char *pcszApp)
     159static PXINIAPPDATA FindApp(PXINI pXIni,           // in: profile opened with xprfOpenProfile
     160                            const char *pcszApp)
    161161{
    162162    PLISTNODE pAppNode = lstQueryFirstNode(&pXIni->llApps);
     
    183183 */
    184184
    185 PXINIAPPDATA CreateApp(PXINI pXIni,         // in: profile opened with xprfOpenProfile
    186                        const char *pcszApp)
     185static PXINIAPPDATA CreateApp(PXINI pXIni,         // in: profile opened with xprfOpenProfile
     186                              const char *pcszApp)
    187187{
    188188    PXINIAPPDATA pAppData;
     
    210210 */
    211211
    212 PXINIKEYDATA FindKey(PXINIAPPDATA pAppData,
    213                      const char *pcszKey)
     212static PXINIKEYDATA FindKey(PXINIAPPDATA pAppData,
     213                            const char *pcszKey)
    214214{
    215215    PLISTNODE pKeyNode = lstQueryFirstNode(&pAppData->llKeys);
     
    236236 */
    237237
    238 PXINIKEYDATA CreateKey(PXINIAPPDATA pAppData,
    239                        const char *pcszKey,     // in: key name
    240                        PBYTE pbData,            // in: data for key
    241                        ULONG cbData)            // in: sizeof (*pbData)
     238static PXINIKEYDATA CreateKey(PXINIAPPDATA pAppData,
     239                              const char *pcszKey,     // in: key name
     240                              PBYTE pbData,            // in: data for key
     241                              ULONG cbData)            // in: sizeof (*pbData)
    242242{
    243243    PXINIKEYDATA pKeyData;
     
    274274 */
    275275
    276 VOID FreeKey(PXINIKEYDATA pKeyDataThis)
     276static VOID FreeKey(PXINIKEYDATA pKeyDataThis)
    277277{
    278278    if (pKeyDataThis->pszKeyName)
     
    292292 */
    293293
    294 VOID FreeApp(PXINIAPPDATA pAppDataThis)
     294static VOID FreeApp(PXINIAPPDATA pAppDataThis)
    295295{
    296296    PLISTNODE pKeyNode = lstQueryFirstNode(&pAppDataThis->llKeys);
     
    319319 */
    320320
    321 BOOL FreeINI(PXINI pXIni)       // in: profile opened with xprfOpenProfile
     321static BOOL FreeINI(PXINI pXIni)       // in: profile opened with xprfOpenProfile
    322322{
    323323    BOOL brc = FALSE;
     
    356356 */
    357357
    358 BOOL ReadINI(PXINI pXIni)       // in: profile opened with xprfOpenProfile
     358static BOOL ReadINI(PXINI pXIni)       // in: profile opened with xprfOpenProfile
    359359{
    360360    BOOL brc = FALSE;
     
    457457 */
    458458
    459 BOOL WriteINI(PXINI pXIni)      // in: profile opened with xprfOpenProfile
     459static BOOL WriteINI(PXINI pXIni)      // in: profile opened with xprfOpenProfile
    460460{
    461461    BOOL    brc = FALSE;
Note: See TracChangeset for help on using the changeset viewer.