2008-01-05 16:23:04 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2009-07-06 15:51:25 +04:00
|
|
|
* ede-crasher, a crash handler tool
|
2008-01-05 16:23:04 +03:00
|
|
|
* Part of Equinox Desktop Environment (EDE).
|
2009-07-06 15:51:25 +04:00
|
|
|
* Copyright (c) 2008-2009 EDE Authors.
|
2008-01-05 16:23:04 +03:00
|
|
|
*
|
|
|
|
* This program is licensed under terms of the
|
|
|
|
* GNU General Public License version 2 or newer.
|
|
|
|
* See COPYING for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CRASHDIALOG_H__
|
|
|
|
#define __CRASHDIALOG_H__
|
|
|
|
|
2009-07-06 15:51:25 +04:00
|
|
|
struct ProgramDetails {
|
|
|
|
bool ede_app;
|
|
|
|
const char *name;
|
|
|
|
const char *path;
|
|
|
|
const char *pid;
|
|
|
|
const char *sig;
|
|
|
|
const char *bugaddress;
|
2008-01-05 16:23:04 +03:00
|
|
|
};
|
|
|
|
|
2009-07-06 15:51:25 +04:00
|
|
|
int crash_dialog_show(const ProgramDetails& p);
|
|
|
|
|
2008-01-05 16:23:04 +03:00
|
|
|
#endif
|