diff options
author | infirit <[email protected]> | 2014-12-19 00:38:30 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-19 00:48:47 +0100 |
commit | 18833cb8c4c52155e055ef54d52dacc34d75d551 (patch) | |
tree | 959af84c41016586b55be3ab2e6a27b9c8b54a35 /src/procproperties.h | |
parent | 51357cc58ed32763b7eaff97d9ba04507ac0665d (diff) | |
download | mate-system-monitor-18833cb8c4c52155e055ef54d52dacc34d75d551.tar.bz2 mate-system-monitor-18833cb8c4c52155e055ef54d52dacc34d75d551.tar.xz |
Add a Process Properties dialog in MATE System Monitor
Taken from GSM commit: 72546b7f3346fc0647a433529f3292050f15278f
From: Krishnan Parthasarathi <[email protected]>
Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=543347
Diffstat (limited to 'src/procproperties.h')
-rw-r--r-- | src/procproperties.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/procproperties.h b/src/procproperties.h new file mode 100644 index 0000000..681e6d0 --- /dev/null +++ b/src/procproperties.h @@ -0,0 +1,30 @@ +/* Process properties dialog + * Copyright (C) 2010 Krishnan Parthasarathi <[email protected]> + * Robert Ancell <[email protected]> + * + * 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 Library General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + * + */ + +#ifndef _PROCPROPERTIES_H_ +#define _PROCPROPERTIES_H_ + +#include <glib.h> + +#include "procman.h" + +void create_procproperties_dialog (ProcData *procdata); + +#endif |