Move putchar_filtered() to utils.c.
[platform/upstream/binutils.git] / gdb / p-lang.h
1 /* Pascal language support definitions for GDB, the GNU debugger.
2    Copyright 2000 Free Software Foundation, Inc.
3
4    This file is part of GDB.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* This file is derived from c-lang.h */
21
22 #ifdef __STDC__                 /* Forward decls for prototypes */
23 struct value;
24 #endif
25
26 extern int pascal_parse (void); /* Defined in p-exp.y */
27
28 extern void pascal_error (char *);      /* Defined in p-exp.y */
29
30 /* Defined in p-typeprint.c */
31 extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int);
32
33 extern int pascal_val_print (struct type *, char *, int, CORE_ADDR, struct ui_file *, int, int,
34                              int, enum val_prettyprint);
35
36 extern int pascal_value_print (struct value *, struct ui_file *, int, enum val_prettyprint);
37
38 extern void pascal_type_print_method_args (char *, char *,
39                                            struct ui_file *);
40
41 /* These are in p-lang.c: */
42
43 extern void pascal_printchar (int, struct ui_file *);
44
45 extern void pascal_printstr (struct ui_file *, char *, unsigned int, int, int);
46
47 extern struct type *pascal_create_fundamental_type (struct objfile *, int);
48
49 extern struct type **const (pascal_builtin_types[]);
50
51 /* These are in p-typeprint.c: */
52
53 extern void
54   pascal_type_print_base (struct type *, struct ui_file *, int, int);
55
56 extern void
57   pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
58
59 /* These are in cp-valprint.c */
60
61 extern int vtblprint;           /* Controls printing of vtbl's */
62
63 extern int static_field_print;
64
65 extern void pascal_object_print_class_member (char *, struct type *, struct ui_file *, char *);
66
67 extern void pascal_object_print_class_method (char *, struct type *, struct ui_file *);
68
69 extern void pascal_object_print_value_fields (struct type *, char *, CORE_ADDR,
70                            struct ui_file *, int, int, enum val_prettyprint,
71                                               struct type **, int);
72
73 extern int pascal_object_is_vtbl_ptr_type (struct type *);
74
75 extern int pascal_object_is_vtbl_member (struct type *);