diff src/readpst.c @ 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 b65e8d0a088a
children 4b498fd68464
line wrap: on
line diff
--- a/src/readpst.c	Mon Apr 13 15:55:55 2009 -0700
+++ b/src/readpst.c	Mon Apr 13 19:14:30 2009 -0700
@@ -26,7 +26,7 @@
     int32_t type;
 };
 
-void      process(pst_item *outeritem, pst_desc_ll *d_ptr);
+void      process(pst_item *outeritem, pst_desc_tree *d_ptr);
 void      write_email_body(FILE *f, char *body);
 void      removeCR(char *c);
 void      usage();
@@ -121,7 +121,7 @@
 regex_t  meta_charset_pattern;
 
 
-void process(pst_item *outeritem, pst_desc_ll *d_ptr)
+void process(pst_item *outeritem, pst_desc_tree *d_ptr)
 {
     struct file_ll ff;
     pst_item *item = NULL;
@@ -253,7 +253,7 @@
 
 int main(int argc, char* const* argv) {
     pst_item *item = NULL;
-    pst_desc_ll *d_ptr;
+    pst_desc_tree *d_ptr;
     char * fname = NULL;
     char *d_log  = NULL;
     int c,x;
@@ -806,7 +806,7 @@
     fprintf(f_output, "Content-Type: %s\n\n", attach->mimetype.str);
     ptr = pst_getID(pf, attach->i_id);
 
-    pst_desc_ll d_ptr;
+    pst_desc_tree d_ptr;
     d_ptr.d_id        = 0;
     d_ptr.parent_d_id = 0;
     d_ptr.assoc_tree  = NULL;