*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / p-lang.h
CommitLineData
373a8247 1/* Pascal language support definitions for GDB, the GNU debugger.
5bcca90b 2
9b254dd1 3 Copyright (C) 2000, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
373a8247
PM
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
373a8247
PM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
373a8247
PM
19
20/* This file is derived from c-lang.h */
21
373a8247 22struct value;
373a8247 23
cd6c7346
PM
24/* Defined in p-lang.c */
25extern const char *pascal_main_name (void);
26
373a8247
PM
27extern int pascal_parse (void); /* Defined in p-exp.y */
28
29extern void pascal_error (char *); /* Defined in p-exp.y */
30
31/* Defined in p-typeprint.c */
32extern void pascal_print_type (struct type *, char *, struct ui_file *, int, int);
33
5c6ce71d
TT
34extern void pascal_print_typedef (struct type *, struct symbol *,
35 struct ui_file *);
36
fc1a4b47 37extern int pascal_val_print (struct type *, const gdb_byte *, int,
79a45b7d
TT
38 CORE_ADDR, struct ui_file *, int,
39 const struct value_print_options *);
373a8247 40
79a45b7d
TT
41extern int pascal_value_print (struct value *, struct ui_file *,
42 const struct value_print_options *);
373a8247
PM
43
44extern void pascal_type_print_method_args (char *, char *,
45 struct ui_file *);
46
47/* These are in p-lang.c: */
48
e2625b33
PM
49extern int
50 is_pascal_string_type (struct type *, int *, int *, int *, int *, char **);
5598ce11 51
373a8247
PM
52extern void pascal_printchar (int, struct ui_file *);
53
fc1a4b47 54extern void pascal_printstr (struct ui_file *, const gdb_byte *,
79a45b7d
TT
55 unsigned int, int, int,
56 const struct value_print_options *);
373a8247 57
373a8247
PM
58extern struct type **const (pascal_builtin_types[]);
59
60/* These are in p-typeprint.c: */
61
62extern void
63 pascal_type_print_base (struct type *, struct ui_file *, int, int);
64
65extern void
66 pascal_type_print_varspec_prefix (struct type *, struct ui_file *, int, int);
67
fc1a4b47 68extern void pascal_object_print_value_fields (struct type *, const gdb_byte *,
a2bd3dcd 69 CORE_ADDR, struct ui_file *,
79a45b7d
TT
70 int,
71 const struct value_print_options *,
373a8247
PM
72 struct type **, int);
73
74extern int pascal_object_is_vtbl_ptr_type (struct type *);
75
76extern int pascal_object_is_vtbl_member (struct type *);
This page took 0.65062 seconds and 4 git commands to generate.