ede/ede-bug-tools/ede-crasher/CrashDialog.h

28 lines
529 B
C
Raw Normal View History

2008-01-05 16:23:04 +03:00
/*
* $Id$
*
* ede-crasher, a crash handler tool
2008-01-05 16:23:04 +03:00
* Part of Equinox Desktop Environment (EDE).
* 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__
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
};
int crash_dialog_show(const ProgramDetails& p);
2008-01-05 16:23:04 +03:00
#endif