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/vcard.c

    r139 r142  
    6666 ********************************************************************/
    6767
    68 VOID FreeList(PLINKLIST *ppll);
     68static VOID FreeList(PLINKLIST *ppll);
    6969
    7070/* ******************************************************************
     
    7979 */
    8080
    81 VOID Translate(PXSTRING pstr,
    82                ULONG cpCurrent)
     81static VOID Translate(PXSTRING pstr,
     82                      ULONG cpCurrent)
    8383{
    8484    ULONG ul;
     
    107107 */
    108108
    109 APIRET DecodeStringList(PCSZ pStart,
    110                         PCSZ pEnd,
    111                         PXSTRING *ppaStrings,
    112                         PULONG pcStrings,
    113                         PXSTRING *ppstrLast,        // out: last string stored
    114                         ULONG cpCurrent)            // in: current codepage
     109static APIRET DecodeStringList(PCSZ pStart,
     110                               PCSZ pEnd,
     111                               PXSTRING *ppaStrings,
     112                               PULONG pcStrings,
     113                               PXSTRING *ppstrLast,        // out: last string stored
     114                               ULONG cpCurrent)            // in: current codepage
    115115{
    116116    if (!pStart || !pEnd)
     
    299299 */
    300300
    301 APIRET Tokenize(ULONG ulLevel,
    302                 PSZ *ppszInput,
    303                 PLINKLIST pllParent,
    304                 ULONG cpCurrent)
     301static APIRET Tokenize(ULONG ulLevel,
     302                       PSZ *ppszInput,
     303                       PLINKLIST pllParent,
     304                       ULONG cpCurrent)
    305305{
    306306    PSZ         pLineThis = *ppszInput;
     
    474474 */
    475475
    476 PVCFPROPERTY FindValues(PLINKLIST pll,
    477                         PCSZ pcszProperty,
    478                         PCSZ pcszParameter)
     476static PVCFPROPERTY FindValues(PLINKLIST pll,
     477                               PCSZ pcszProperty,
     478                               PCSZ pcszParameter)
    479479{
    480480    PLISTNODE   pNode;
     
    503503 */
    504504
    505 VOID CopyStrings(PVCFPROPERTY pProp,
    506                  PCSZ *papcszValues,
    507                  ULONG cValues)
     505static VOID CopyStrings(PVCFPROPERTY pProp,
     506                        PCSZ *papcszValues,
     507                        ULONG cValues)
    508508{
    509509    ULONG ul;
     
    531531 */
    532532
    533 ULONG GetFlagStrings(PXSTRING pastrParameters,
    534                      ULONG cParameters,
    535                      const PCSZ **apcsz,
    536                      const ULONG *afl,
    537                      ULONG cStrings,
    538                      ULONG flDefault)
     533static ULONG GetFlagStrings(PXSTRING pastrParameters,
     534                            ULONG cParameters,
     535                            const PCSZ **apcsz,
     536                            const ULONG *afl,
     537                            ULONG cStrings,
     538                            ULONG flDefault)
    539539{
    540540    ULONG ul, ul2;
     
    584584 */
    585585
    586 VOID AppendAddress(PVCARD pvc,
    587                    PVCFPROPERTY pProp)
     586static VOID AppendAddress(PVCARD pvc,
     587                          PVCFPROPERTY pProp)
    588588{
    589589    if (pvc->paDeliveryAddresses = (PVCADDRESS)realloc(
     
    611611 */
    612612
    613 VOID AppendLabel(PVCARD pvc,
    614                  PVCFPROPERTY pProp)
     613static VOID AppendLabel(PVCARD pvc,
     614                        PVCFPROPERTY pProp)
    615615{
    616616    if (pvc->paLabels = (PVCLABEL)realloc(
     
    672672 */
    673673
    674 VOID AppendTel(PVCARD pvc,
    675                PVCFPROPERTY pProp)
     674static VOID AppendTel(PVCARD pvc,
     675                      PVCFPROPERTY pProp)
    676676{
    677677    if (pvc->paPhones = (PVCPHONE)realloc(pvc->paPhones,
     
    816816 */
    817817
    818 VOID FreeList(PLINKLIST *ppll)
     818static VOID FreeList(PLINKLIST *ppll)
    819819{
    820820    PLISTNODE pNode = lstQueryFirstNode(*ppll);
Note: See TracChangeset for help on using the changeset viewer.