* configure.tgt (hppa*-*-bsd*, hppa*-*-osf*, m68*-*-sunos4*,
[deliverable/binutils-gdb.git] / gdb / wrapper.h
index 401cad8a0c58100dad0dd52b14eb1e6df120bfa8..85fc0b38b2aa27dd89a0509580f188ce1f335424 100644 (file)
 #ifndef WRAPPER_H
 #define WRAPPER_H 1
 
-/* Use this struct used to pass arguments to wrapper routines. */
+/* Use this struct to pass arguments to wrapper routines. */
 struct gdb_wrapper_arguments;
 
-extern int gdb_parse_exp_1 PARAMS ((char **, struct block *, 
-                            int, struct expression **));
-extern int wrap_parse_exp_1 PARAMS ((char *));
+extern int gdb_parse_exp_1 (char **, struct block *,
+                           int, struct expression **);
 
-extern int gdb_evaluate_expression PARAMS ((struct expression *, value_ptr *));
-extern int wrap_evaluate_expression PARAMS ((char *));
+extern int gdb_evaluate_expression (struct expression *, value_ptr *);
 
-extern int gdb_value_fetch_lazy PARAMS ((value_ptr));
-extern int wrap_value_fetch_lazy PARAMS ((char *));
+extern int gdb_value_fetch_lazy (value_ptr);
 
-extern int gdb_value_equal PARAMS ((value_ptr, value_ptr, int *));
-extern int wrap_value_equal PARAMS ((char *));
+extern int gdb_value_equal (value_ptr, value_ptr, int *);
 
-extern int gdb_value_ind PARAMS ((value_ptr val, value_ptr * rval));
-extern int wrap_value_ind PARAMS ((char *opaque_arg));
+extern int gdb_value_assign (value_ptr, value_ptr, value_ptr *);
+
+extern int gdb_value_subscript (value_ptr, value_ptr, value_ptr *);
+
+extern int gdb_value_ind (value_ptr val, value_ptr * rval);
+
+extern int gdb_parse_and_eval_type (char *, int, struct type **);
 
 #endif /* WRAPPER_H */
This page took 0.023506 seconds and 4 git commands to generate.