Mercurial > libpst
comparison src/pst2ldif.cpp @ 186:0a4f7ecd7452
more cleanup of external names in the shared library
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 13 Apr 2009 19:14:30 -0700 |
parents | 6954d315aaa8 |
children | 2f38c4ce606f |
comparison
equal
deleted
inserted
replaced
185:e0392999e9b8 | 186:0a4f7ecd7452 |
---|---|
104 if (i == all_strings.end()) return register_string(&n[0]); | 104 if (i == all_strings.end()) return register_string(&n[0]); |
105 } | 105 } |
106 } | 106 } |
107 | 107 |
108 | 108 |
109 static void process(pst_desc_ll *d_ptr); | 109 static void process(pst_desc_tree *d_ptr); |
110 static void process(pst_desc_ll *d_ptr) { | 110 static void process(pst_desc_tree *d_ptr) { |
111 DEBUG_ENT("process"); | 111 DEBUG_ENT("process"); |
112 pst_item *item = NULL; | 112 pst_item *item = NULL; |
113 while (d_ptr) { | 113 while (d_ptr) { |
114 if (d_ptr->desc) { | 114 if (d_ptr->desc) { |
115 item = pst_parse_item(&pstfile, d_ptr, NULL); | 115 item = pst_parse_item(&pstfile, d_ptr, NULL); |
574 va_end(ap); | 574 va_end(ap); |
575 } | 575 } |
576 | 576 |
577 | 577 |
578 int main(int argc, char* const* argv) { | 578 int main(int argc, char* const* argv) { |
579 pst_desc_ll *d_ptr; | 579 pst_desc_tree *d_ptr; |
580 char *fname = NULL; | 580 char *fname = NULL; |
581 int c; | 581 int c; |
582 char *d_log = NULL; | 582 char *d_log = NULL; |
583 prog_name = argv[0]; | 583 prog_name = argv[0]; |
584 pst_item *item = NULL; | 584 pst_item *item = NULL; |