File: docfile.h

package info (click to toggle)
afterstep 2.2.12-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 33,168 kB
  • sloc: ansic: 201,695; sh: 5,894; xml: 3,721; makefile: 2,095; perl: 1,558; cpp: 811
file content (20 lines) | stat: -rw-r--r-- 800 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef DOCFILE_H_HEADER_INCLUDED
#define DOCFILE_H_HEADER_INCLUDED

struct ASXMLInterpreterState;

void write_doc_header( struct ASXMLInterpreterState *state );
void write_options_header( struct ASXMLInterpreterState *state );
void write_options_footer( struct ASXMLInterpreterState *state );
void write_doc_footer( struct ASXMLInterpreterState *state );
Bool make_doc_dir( const char *name );
Bool start_doc_file(const char * dest_dir, const char *doc_path, const char *doc_postfix, ASDocType doc_type, 
                	const char *doc_name, const char *display_name, const char *display_purpose, 
					struct ASXMLInterpreterState *state, 
					ASFlagType doc_class_mask, ASDocClass doc_class );
void end_doc_file( struct ASXMLInterpreterState *state );

#define DEB_TMP  "/debian/tmp/"

#endif