31 lines
911 B
C
31 lines
911 B
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
* vi:set noexpandtab tabstop=8 shiftwidth=8:
|
|
*
|
|
* Copyright (C) 2023 Endless OS Foundation LLC
|
|
*
|
|
* Author: Philip Withnall <pwithnall@endlessos.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
#include <glib-object.h>
|
|
#include <gio/gio.h>
|
|
|
|
#include "gs-plugin-job.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GS_TYPE_PLUGIN_JOB_INSTALL_APPS (gs_plugin_job_install_apps_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (GsPluginJobInstallApps, gs_plugin_job_install_apps, GS, PLUGIN_JOB_INSTALL_APPS, GsPluginJob)
|
|
|
|
GsPluginJob *gs_plugin_job_install_apps_new (GsAppList *apps,
|
|
GsPluginInstallAppsFlags flags);
|
|
|
|
GsAppList *gs_plugin_job_install_apps_get_apps (GsPluginJobInstallApps *self);
|
|
GsPluginInstallAppsFlags gs_plugin_job_install_apps_get_flags (GsPluginJobInstallApps *self);
|
|
|
|
G_END_DECLS
|