xsd2ttcn: list length restriction corrected (Bug 495990)
[deliverable/titan.core.git] / repgen / repgen.h
1 /******************************************************************************
2 * Copyright (c) 2000-2016 Ericsson Telecom AB
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Balasko, Jeno
10 * Szabo, Janos Zoltan – initial implementation
11 * Zalanyi, Balazs Andor
12 *
13 ******************************************************************************/
14 #ifndef REPGEN_H
15 #define REPGEN_H
16
17 #define MAXLEN 2048
18
19 struct listentry
20 {
21 char tcname[MAXLEN];
22 struct listentry *next;
23 };
24
25
26 int WriteCode ( struct listentry *first, char *code_srcdir, char *code_dstdir, int tablen, int fillcol );
27 int WriteLog ( struct listentry *first, char *log_srcdir, char *log_dstdir );
28 int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
29 int WriteDump ( struct listentry *first, char *dump_srcdir, char *dump_dstdir, int tablen, int fillcol );
30 int Genhtml ( struct listentry *first, char *title, char *data_dstdir );
31
32
33 #endif /* REPGEN_H */
This page took 0.031415 seconds and 5 git commands to generate.