/usr/include/PackageKit/packagekit-glib2/pk-common.h is in libpackagekit-glib2-dev 0.8.12-1ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2007-2008 Richard Hughes <richard@hughsie.com>
*
* Licensed under the GNU Lesser General Public License Version 2.1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#if !defined (__PACKAGEKIT_H_INSIDE__) && !defined (PK_COMPILATION)
#error "Only <packagekit.h> can be included directly."
#endif
#ifndef __PK_COMMON_H
#define __PK_COMMON_H
#include <glib.h>
#include "pk-enum.h"
G_BEGIN_DECLS
/**
* PK_DBUS_SERVICE:
*
* The SYSTEM service DBUS name
*/
#define PK_DBUS_SERVICE "org.freedesktop.PackageKit"
/**
* PK_DBUS_PATH:
*
* The DBUS path
*/
#define PK_DBUS_PATH "/org/freedesktop/PackageKit"
/**
* PK_DBUS_INTERFACE:
*
* The DBUS interface
*/
#define PK_DBUS_INTERFACE "org.freedesktop.PackageKit"
/**
* PK_DBUS_INTERFACE_TRANSACTION:
*
* The DBUS interface for the transactions
*/
#define PK_DBUS_INTERFACE_TRANSACTION "org.freedesktop.PackageKit.Transaction"
/**
* PK_SERVICE_PACK_GROUP_NAME:
*
* The group name of the Service Pack config file
*/
#define PK_SERVICE_PACK_GROUP_NAME "PackageKit Service Pack"
/**
* PK_PACKAGE_LIST_FILENAME:
*
* The default location of the package list
*/
#define PK_SYSTEM_PACKAGE_LIST_FILENAME "/var/lib/PackageKit/system.package-list"
/**
* PK_PACKAGE_CACHE_FILENAME:
*
* The default location of the package cache database
*/
#define PK_SYSTEM_PACKAGE_CACHE_FILENAME "/var/lib/PackageKit/package-cache.db"
void pk_common_test (gpointer user_data);
gchar **pk_ptr_array_to_strv (GPtrArray *array)
G_GNUC_WARN_UNUSED_RESULT;
gchar *pk_iso8601_present (void)
G_GNUC_WARN_UNUSED_RESULT;
gchar *pk_iso8601_from_date (const GDate *date);
GDate *pk_iso8601_to_date (const gchar *iso_date);
GDateTime *pk_iso8601_to_datetime (const gchar *iso_date);
gchar *pk_get_distro_id (void);
G_END_DECLS
#endif /* __PK_COMMON_H */
|