Fix some indentation in linespec.c
[deliverable/binutils-gdb.git] / gdb / python / py-record.h
index ae2d2d2c860f28606738cd6f9666c86e74928796..254ba9e06d0e26cc135f32f413dfb1e761833911 100644 (file)
@@ -1,6 +1,6 @@
 /* Python interface to record targets.
 
-   Copyright 2017 Free Software Foundation, Inc.
+   Copyright 2017-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -56,10 +56,17 @@ typedef struct
 /* Python RecordInstruction type.  */
 extern PyTypeObject recpy_insn_type;
 
+/* Python RecordFunctionSegment type.  */
+extern PyTypeObject recpy_func_type;
+
 /* Create a new gdb.RecordInstruction object.  */
 extern PyObject *recpy_insn_new (ptid_t ptid, enum record_method method,
                                 Py_ssize_t number);
 
+/* Create a new gdb.RecordFunctionSegment object.  */
+extern PyObject *recpy_func_new (ptid_t ptid, enum record_method method,
+                                Py_ssize_t number);
+
 /* Create a new gdb.RecordGap object.  */
 extern PyObject *recpy_gap_new (int reason_code, const char *reason_string,
                                Py_ssize_t number);
This page took 0.024315 seconds and 4 git commands to generate.