~jbicha/unity-settings-daemon/drop-updates-plugin

« back to all changes in this revision

Viewing changes to plugins/updates/gsd-updates-firmware.h

  • Committer: Jeremy Bicha
  • Date: 2017-03-22 16:11:54 UTC
  • Revision ID: jbicha@ubuntu.com-20170322161154-r6ygbqyi5wdr4uly
updates: Remove the updates plugin

The functionality now lives in gnome-software that has its own session
service for update polling.

https://git.gnome.org/browse/gnome-settings-daemon/commit/?id=fc22a8100

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2
 
 *
3
 
 * Copyright (C) 2007-2011 Richard Hughes <richard@hughsie.com>
4
 
 *
5
 
 * Licensed under the GNU General Public License Version 2
6
 
 *
7
 
 * This program is free software; you can redistribute it and/or modify
8
 
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation; either version 2 of the License, or
10
 
 * (at your option) any later version.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software
19
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
 
 */
21
 
 
22
 
#ifndef __GSD_UPDATES_FIRMWARE_H
23
 
#define __GSD_UPDATES_FIRMWARE_H
24
 
 
25
 
#include <glib-object.h>
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
#define GSD_UPDATES_TYPE_FIRMWARE               (gsd_updates_firmware_get_type ())
30
 
#define GSD_UPDATES_FIRMWARE(o)                 (G_TYPE_CHECK_INSTANCE_CAST ((o), GSD_UPDATES_TYPE_FIRMWARE, GsdUpdatesFirmware))
31
 
#define GSD_UPDATES_FIRMWARE_CLASS(k)           (G_TYPE_CHECK_CLASS_CAST((k), GSD_UPDATES_TYPE_FIRMWARE, GsdUpdatesFirmwareClass))
32
 
#define GSD_UPDATES_IS_FIRMWARE(o)              (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSD_UPDATES_TYPE_FIRMWARE))
33
 
 
34
 
typedef struct GsdUpdatesFirmwarePrivate GsdUpdatesFirmwarePrivate;
35
 
 
36
 
typedef struct
37
 
{
38
 
         GObject                         parent;
39
 
         GsdUpdatesFirmwarePrivate      *priv;
40
 
} GsdUpdatesFirmware;
41
 
 
42
 
typedef struct
43
 
{
44
 
        GObjectClass    parent_class;
45
 
} GsdUpdatesFirmwareClass;
46
 
 
47
 
GType                    gsd_updates_firmware_get_type          (void);
48
 
GsdUpdatesFirmware      *gsd_updates_firmware_new               (void);
49
 
 
50
 
G_END_DECLS
51
 
 
52
 
#endif /* __GSD_UPDATES_FIRMWARE_H */