diff options
| author | Karel Klic <kklic@redhat.com> | 2011-06-13 16:46:42 +0200 |
|---|---|---|
| committer | Karel Klic <kklic@redhat.com> | 2011-06-13 16:46:42 +0200 |
| commit | 8edc80c6a08ef30d02cad35b736c0c7dcb62a7f3 (patch) | |
| tree | b747ef4d0e24ad4cf2980f0681a93408011dbcd6 /libreport/src/report-python/common.h | |
| parent | 6dcdb4a5cb3ed68eb7d72cc65e58055d1e4f7c65 (diff) | |
| parent | 16f9e8da051b87164b77bf9a42a61ae9a97fb5fd (diff) | |
| download | abrt-8edc80c6a08ef30d02cad35b736c0c7dcb62a7f3.tar.gz abrt-8edc80c6a08ef30d02cad35b736c0c7dcb62a7f3.tar.xz abrt-8edc80c6a08ef30d02cad35b736c0c7dcb62a7f3.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'libreport/src/report-python/common.h')
| -rw-r--r-- | libreport/src/report-python/common.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/libreport/src/report-python/common.h b/libreport/src/report-python/common.h deleted file mode 100644 index 713aa2f2..00000000 --- a/libreport/src/report-python/common.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - Copyright (C) 2009 Abrt team. - Copyright (C) 2009 RedHat inc. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ -#include <Python.h> - -#include "dump_dir.h" -#include "problem_data.h" -#include "run_event.h" -#include "report.h" - -/* exception object */ -extern PyObject *ReportError; - -/* type objects */ -extern PyTypeObject p_problem_data_type; -extern PyTypeObject p_dump_dir_type; -extern PyTypeObject p_run_event_state_type; - -/* python objects' struct defs */ -typedef struct { - PyObject_HEAD - struct dump_dir *dd; -} p_dump_dir; - -typedef struct { - PyObject_HEAD - problem_data_t *cd; -} p_problem_data; - -/* module-level functions */ -/* for include/report/dump_dir.h */ -PyObject *p_dd_opendir(PyObject *module, PyObject *args); -PyObject *p_dd_create(PyObject *module, PyObject *args); -PyObject *p_delete_dump_dir(PyObject *pself, PyObject *args); -/* for include/report/report.h */ -PyObject *p_report_problem_in_dir(PyObject *pself, PyObject *args); -PyObject *p_report_problem_in_memory(PyObject *pself, PyObject *args); -PyObject *p_report_problem(PyObject *pself, PyObject *args); |
