Changeset 142 for trunk/src/helpers/vcard.c
- Timestamp:
- Feb 21, 2002, 8:24:22 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/vcard.c
r139 r142 66 66 ********************************************************************/ 67 67 68 VOID FreeList(PLINKLIST *ppll);68 static VOID FreeList(PLINKLIST *ppll); 69 69 70 70 /* ****************************************************************** … … 79 79 */ 80 80 81 VOID Translate(PXSTRING pstr,82 ULONG cpCurrent)81 static VOID Translate(PXSTRING pstr, 82 ULONG cpCurrent) 83 83 { 84 84 ULONG ul; … … 107 107 */ 108 108 109 APIRET DecodeStringList(PCSZ pStart,110 PCSZ pEnd,111 PXSTRING *ppaStrings,112 PULONG pcStrings,113 PXSTRING *ppstrLast, // out: last string stored114 ULONG cpCurrent) // in: current codepage109 static 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 115 115 { 116 116 if (!pStart || !pEnd) … … 299 299 */ 300 300 301 APIRET Tokenize(ULONG ulLevel,302 PSZ *ppszInput,303 PLINKLIST pllParent,304 ULONG cpCurrent)301 static APIRET Tokenize(ULONG ulLevel, 302 PSZ *ppszInput, 303 PLINKLIST pllParent, 304 ULONG cpCurrent) 305 305 { 306 306 PSZ pLineThis = *ppszInput; … … 474 474 */ 475 475 476 PVCFPROPERTY FindValues(PLINKLIST pll,477 PCSZ pcszProperty,478 PCSZ pcszParameter)476 static PVCFPROPERTY FindValues(PLINKLIST pll, 477 PCSZ pcszProperty, 478 PCSZ pcszParameter) 479 479 { 480 480 PLISTNODE pNode; … … 503 503 */ 504 504 505 VOID CopyStrings(PVCFPROPERTY pProp,506 PCSZ *papcszValues,507 ULONG cValues)505 static VOID CopyStrings(PVCFPROPERTY pProp, 506 PCSZ *papcszValues, 507 ULONG cValues) 508 508 { 509 509 ULONG ul; … … 531 531 */ 532 532 533 ULONG GetFlagStrings(PXSTRING pastrParameters,534 ULONG cParameters,535 const PCSZ **apcsz,536 const ULONG *afl,537 ULONG cStrings,538 ULONG flDefault)533 static ULONG GetFlagStrings(PXSTRING pastrParameters, 534 ULONG cParameters, 535 const PCSZ **apcsz, 536 const ULONG *afl, 537 ULONG cStrings, 538 ULONG flDefault) 539 539 { 540 540 ULONG ul, ul2; … … 584 584 */ 585 585 586 VOID AppendAddress(PVCARD pvc,587 PVCFPROPERTY pProp)586 static VOID AppendAddress(PVCARD pvc, 587 PVCFPROPERTY pProp) 588 588 { 589 589 if (pvc->paDeliveryAddresses = (PVCADDRESS)realloc( … … 611 611 */ 612 612 613 VOID AppendLabel(PVCARD pvc,614 PVCFPROPERTY pProp)613 static VOID AppendLabel(PVCARD pvc, 614 PVCFPROPERTY pProp) 615 615 { 616 616 if (pvc->paLabels = (PVCLABEL)realloc( … … 672 672 */ 673 673 674 VOID AppendTel(PVCARD pvc,675 PVCFPROPERTY pProp)674 static VOID AppendTel(PVCARD pvc, 675 PVCFPROPERTY pProp) 676 676 { 677 677 if (pvc->paPhones = (PVCPHONE)realloc(pvc->paPhones, … … 816 816 */ 817 817 818 VOID FreeList(PLINKLIST *ppll)818 static VOID FreeList(PLINKLIST *ppll) 819 819 { 820 820 PLISTNODE pNode = lstQueryFirstNode(*ppll);
Note:
See TracChangeset
for help on using the changeset viewer.