… | |
… | |
856 | psiconv_page_layout_section psiconv_empty_page_layout_section(void) |
856 | psiconv_page_layout_section psiconv_empty_page_layout_section(void) |
857 | { |
857 | { |
858 | psiconv_page_layout_section result; |
858 | psiconv_page_layout_section result; |
859 | if (!(result = malloc(sizeof(*result)))) |
859 | if (!(result = malloc(sizeof(*result)))) |
860 | goto ERROR1; |
860 | goto ERROR1; |
861 | result->first_page_nr = 0; |
861 | result->first_page_nr = 1; |
862 | result->header_dist = result->footer_dist = 1.27; |
862 | result->header_dist = result->footer_dist = 1.27; |
863 | result->left_margin = result->right_margin = 3.175; |
863 | result->left_margin = result->right_margin = 3.175; |
864 | result->top_margin = result->bottom_margin = 2.54; |
864 | result->top_margin = result->bottom_margin = 2.54; |
865 | result->page_width = 21.0; |
865 | result->page_width = 21.0; |
866 | result->page_height = 29.7; |
866 | result->page_height = 29.7; |