summaryrefslogtreecommitdiff
path: root/src/pk-proc.h
blob: 9bb7f423a884ac750bccf8f7f68eab6d4665f9a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2009 Richard Hughes <richard@hughsie.com>
 *
 * Licensed under the GNU General Public License Version 2
 *
 * 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.
 */

#ifndef __PK_PROC_H
#define __PK_PROC_H

#include <glib-object.h>

G_BEGIN_DECLS

#define PK_TYPE_PROC		(pk_proc_get_type ())
#define PK_PROC(o)		(G_TYPE_CHECK_INSTANCE_CAST ((o), PK_TYPE_PROC, PkProc))
#define PK_PROC_CLASS(k)	(G_TYPE_CHECK_CLASS_CAST((k), PK_TYPE_PROC, PkProcClass))
#define PK_IS_PROC(o)		(G_TYPE_CHECK_INSTANCE_TYPE ((o), PK_TYPE_PROC))
#define PK_IS_PROC_CLASS(k)	(G_TYPE_CHECK_CLASS_TYPE ((k), PK_TYPE_PROC))
#define PK_PROC_GET_CLASS(o)	(G_TYPE_INSTANCE_GET_CLASS ((o), PK_TYPE_PROC, PkProcClass))

typedef struct PkProcPrivate PkProcPrivate;

typedef struct
{
	GObject		 parent;
	PkProcPrivate	*priv;
} PkProc;

typedef struct
{
	GObjectClass	parent_class;
} PkProcClass;

GType		 pk_proc_get_type			(void);
PkProc		*pk_proc_new				(void);

gboolean	 pk_proc_refresh			(PkProc		*proc);
gchar		*pk_proc_get_process_for_cmdlines	(PkProc		*proc,
							 gchar		**filenames);
gboolean	 pk_proc_find_execs			(PkProc		*proc,
							 gchar		**filenames);
gboolean	 pk_proc_find_exec			(PkProc		*proc,
							 const gchar	*filename);

G_END_DECLS

#endif /* __PK_PROC_H */