/[public]/psiconv/trunk/lib/psiconv/generate_texted.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/generate_texted.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 184 Revision 231
1/* 1/*
2 generate_texted.c - Part of psiconv, a PSION 5 file formats converter 2 generate_texted.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 2000 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 2000-2004 Frodo Looijaard <frodol@dds.nl>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
42 psiconv_u32 layout_id; 42 psiconv_u32 layout_id;
43 43
44 psiconv_progress(config,lev,0,"Writing texted section"); 44 psiconv_progress(config,lev,0,"Writing texted section");
45 45
46 if (!value) { 46 if (!value) {
47 psiconv_error(config,0,psiconv_buffer_length(buf),"Null TextEd section"); 47 psiconv_error(config,lev,0,"Null TextEd section");
48 res = -PSICONV_E_GENERATE; 48 res = -PSICONV_E_GENERATE;
49 goto ERROR1; 49 goto ERROR1;
50 } 50 }
51 51
52 if (!(*extra_buf = psiconv_buffer_new())) { 52 if (!(*extra_buf = psiconv_buffer_new())) {
88 } 88 }
89 89
90 if ((res = psiconv_write_u32(config,buf,lev+1,PSICONV_ID_TEXTED_TEXT))) 90 if ((res = psiconv_write_u32(config,buf,lev+1,PSICONV_ID_TEXTED_TEXT)))
91 goto ERROR2; 91 goto ERROR2;
92 92
93 return psiconv_write_text_section(config,buf,lev+1,value->paragraphs); 93 if ((res = psiconv_write_text_section(config,buf,lev+1,value->paragraphs)))
94 goto ERROR2;
95 psiconv_progress(config,lev,0,"End of texted section");
96 return 0;
94 97
95ERROR2: 98ERROR2:
96 psiconv_buffer_free(*extra_buf); 99 psiconv_buffer_free(*extra_buf);
97ERROR1: 100ERROR1:
101 psiconv_error(config,lev,0,"Writing of texted section failed");
98 return res; 102 return res;
99} 103}

Legend:
Removed from v.184  
changed lines
  Added in v.231

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26