ede/ede-bug-tools/ede-crasher/CrashDialog.h
Sanel Zukan dfd2355c18 Some text alignement in ede-bug-report so it can be easily read in the source.
Rewriten ede-crasher. Now is able to call ede-bug-report, display png icon, do
backtrace in random temporary files and etc.
2009-07-06 11:51:25 +00:00

28 lines
529 B
C

/*
* $Id$
*
* ede-crasher, a crash handler tool
* Part of Equinox Desktop Environment (EDE).
* Copyright (c) 2008-2009 EDE Authors.
*
* 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;
};
int crash_dialog_show(const ProgramDetails& p);
#endif