xref: /illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/db.h (revision fe4627ef755b7c263f91a0e6f07cdca5d7083501)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright (c) 1997-1999 by Sun Microsystems, Inc.
24  * All rights reserved.
25  */
26 
27 #ifndef	_DB_H
28 #define	_DB_H
29 
30 #pragma ident	"%Z%%M%	%I%	%E% SMI"
31 
32 #ifdef	__cplusplus
33 extern "C" {
34 #endif
35 
36 /* Generated by m4 */
37 extern void db_set_current_library(char const *);
38 extern char *db_get_current_library(void);
39 extern void db_set_current_file(char const *);
40 extern char *db_get_current_file(void);
41 extern void db_set_output_file(char const *);
42 extern char *db_get_output_file(void);
43 extern void db_set_current_interface(char const *);
44 extern char *db_get_current_interface(void);
45 extern void db_set_source_directory(char const *);
46 extern char *db_get_source_directory(void);
47 extern void db_set_target_directory(char const *);
48 extern char *db_get_target_directory(void);
49 
50 /* By hand. */
51 extern void db_add_print_types(char *, char *);
52 extern char *db_get_first_print_type(void);
53 extern char *db_get_next_print_type(void);
54 extern void db_sort_print_types(void);
55 extern void db_print_print_types(void);
56 
57 extern void db_set_arch(char const *);
58 extern char const *db_get_arch(void);
59 
60 extern void db_report();
61 
62 #ifdef	__cplusplus
63 }
64 #endif
65 
66 #endif	/* _DB_H */
67