blob: 2ade0c9afb93a17c4fc890e620e3cd8b43393eaa [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*
2 * This header exports fixer procedures that are common enough to be used
3 * in other modules.
4 */
5#ifndef _ASN1FIX_EXPORT_H_
6#define _ASN1FIX_EXPORT_H_
7
8#include <asn1fix_tags.h>
9
10/*
11 * Exportable version of an asn1f_lookup_symbol().
12 */
13asn1p_expr_t *asn1f_lookup_symbol_ex(
14 asn1p_t *asn,
15 asn1p_module_t **module_rw,
16 asn1p_expr_t *expr,
17 asn1p_ref_t *ref);
18
19/*
20 * Exportable version of an asn1f_class_access().
21 */
22asn1p_expr_t *asn1f_class_access_ex(asn1p_t *asn, asn1p_module_t *mod,
23 asn1p_expr_t *expr, asn1p_ref_t *, asn1p_module_t **mod_r);
24
25/*
26 * Exportable version of asn1f_find_terminal_type().
27 */
28asn1p_expr_t *asn1f_find_terminal_type_ex(asn1p_t *asn, asn1p_module_t *mod,
29 asn1p_expr_t *tc, asn1p_module_t **opt_module_r);
30
31#endif /* _ASN1FIX_EXPORT_H_ */
32