2013-08-19 08:57:16 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2014-04-22 17:03:22 -04:00
|
|
|
#ifndef META_LAUNCHER_H
|
|
|
|
#define META_LAUNCHER_H
|
2013-08-19 08:57:16 -04:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
2013-12-31 18:03:31 -05:00
|
|
|
typedef struct _MetaLauncher MetaLauncher;
|
2013-08-19 08:57:16 -04:00
|
|
|
|
|
|
|
MetaLauncher *meta_launcher_new (void);
|
2013-12-31 18:03:31 -05:00
|
|
|
void meta_launcher_free (MetaLauncher *self);
|
2013-08-19 08:57:16 -04:00
|
|
|
|
2014-04-22 17:08:57 -04:00
|
|
|
gboolean meta_launcher_activate_session (MetaLauncher *self,
|
|
|
|
GError **error);
|
|
|
|
|
2014-01-16 13:40:41 -05:00
|
|
|
gboolean meta_launcher_activate_vt (MetaLauncher *self,
|
2014-03-11 17:04:22 -04:00
|
|
|
signed char vt,
|
2014-01-16 13:40:41 -05:00
|
|
|
GError **error);
|
2014-04-22 17:08:57 -04:00
|
|
|
|
2014-04-22 17:03:22 -04:00
|
|
|
#endif /* META_LAUNCHER_H */
|