/usr/include/PackageKit/packagekit-glib2/pk-enum.h is in libpackagekit-glib2-dev 1.0.1-2.
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 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2007-2014 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_ENUM_H
#define __PK_ENUM_H
#include <glib.h>
G_BEGIN_DECLS
/**
* PkEnumMatch:
*
* Matching an enumerated type to a string
**/
typedef struct {
guint value;
const gchar *string;
} PkEnumMatch;
/**
* PkRoleEnum:
*
* What we were asked to do, this never changes for the lifetime of the
* transaction.
* Icons that have to represent the whole "aim" of the transaction will use
* these constants
**/
typedef enum {
PK_ROLE_ENUM_UNKNOWN,
PK_ROLE_ENUM_CANCEL,
PK_ROLE_ENUM_DEPENDS_ON,
PK_ROLE_ENUM_GET_DETAILS,
PK_ROLE_ENUM_GET_FILES,
PK_ROLE_ENUM_GET_PACKAGES,
PK_ROLE_ENUM_GET_REPO_LIST,
PK_ROLE_ENUM_REQUIRED_BY,
PK_ROLE_ENUM_GET_UPDATE_DETAIL,
PK_ROLE_ENUM_GET_UPDATES,
PK_ROLE_ENUM_INSTALL_FILES,
PK_ROLE_ENUM_INSTALL_PACKAGES,
PK_ROLE_ENUM_INSTALL_SIGNATURE,
PK_ROLE_ENUM_REFRESH_CACHE,
PK_ROLE_ENUM_REMOVE_PACKAGES,
PK_ROLE_ENUM_REPO_ENABLE,
PK_ROLE_ENUM_REPO_SET_DATA,
PK_ROLE_ENUM_RESOLVE,
PK_ROLE_ENUM_SEARCH_DETAILS,
PK_ROLE_ENUM_SEARCH_FILE,
PK_ROLE_ENUM_SEARCH_GROUP,
PK_ROLE_ENUM_SEARCH_NAME,
PK_ROLE_ENUM_UPDATE_PACKAGES,
PK_ROLE_ENUM_WHAT_PROVIDES,
PK_ROLE_ENUM_ACCEPT_EULA,
PK_ROLE_ENUM_DOWNLOAD_PACKAGES,
PK_ROLE_ENUM_GET_DISTRO_UPGRADES,
PK_ROLE_ENUM_GET_CATEGORIES,
PK_ROLE_ENUM_GET_OLD_TRANSACTIONS,
PK_ROLE_ENUM_REPAIR_SYSTEM, /* Since: 0.7.2 */
PK_ROLE_ENUM_GET_DETAILS_LOCAL, /* Since: 0.8.17 */
PK_ROLE_ENUM_GET_FILES_LOCAL, /* Since: 0.9.1 */
PK_ROLE_ENUM_REPO_REMOVE, /* Since: 0.9.1 */
PK_ROLE_ENUM_LAST
} PkRoleEnum;
/**
* PkStatusEnum:
*
* What status we are now; this can change for each transaction giving a
* status of what sort of thing is happening
* Icons that change to represent the current status of the transaction will
* use these constants
* If you add to these, make sure you add filenames in gpk-watch.c also
*
* A typical transaction will do:
* - schedule task
* WAIT
* - run task
* SETUP
* - wait for lock
* RUNNING
*
* This means that backends should run pk_backend_set_status (backend, PK_STATUS_ENUM_RUNNING)
* when they are ready to start running the transaction and after a lock has been got.
**/
typedef enum {
PK_STATUS_ENUM_UNKNOWN,
PK_STATUS_ENUM_WAIT,
PK_STATUS_ENUM_SETUP,
PK_STATUS_ENUM_RUNNING,
PK_STATUS_ENUM_QUERY,
PK_STATUS_ENUM_INFO,
PK_STATUS_ENUM_REMOVE,
PK_STATUS_ENUM_REFRESH_CACHE,
PK_STATUS_ENUM_DOWNLOAD,
PK_STATUS_ENUM_INSTALL,
PK_STATUS_ENUM_UPDATE,
PK_STATUS_ENUM_CLEANUP,
PK_STATUS_ENUM_OBSOLETE,
PK_STATUS_ENUM_DEP_RESOLVE,
PK_STATUS_ENUM_SIG_CHECK,
PK_STATUS_ENUM_TEST_COMMIT,
PK_STATUS_ENUM_COMMIT,
PK_STATUS_ENUM_REQUEST,
PK_STATUS_ENUM_FINISHED,
PK_STATUS_ENUM_CANCEL,
PK_STATUS_ENUM_DOWNLOAD_REPOSITORY,
PK_STATUS_ENUM_DOWNLOAD_PACKAGELIST,
PK_STATUS_ENUM_DOWNLOAD_FILELIST,
PK_STATUS_ENUM_DOWNLOAD_CHANGELOG,
PK_STATUS_ENUM_DOWNLOAD_GROUP,
PK_STATUS_ENUM_DOWNLOAD_UPDATEINFO,
PK_STATUS_ENUM_REPACKAGING,
PK_STATUS_ENUM_LOADING_CACHE,
PK_STATUS_ENUM_SCAN_APPLICATIONS,
PK_STATUS_ENUM_GENERATE_PACKAGE_LIST,
PK_STATUS_ENUM_WAITING_FOR_LOCK,
PK_STATUS_ENUM_WAITING_FOR_AUTH,
PK_STATUS_ENUM_SCAN_PROCESS_LIST,
PK_STATUS_ENUM_CHECK_EXECUTABLE_FILES,
PK_STATUS_ENUM_CHECK_LIBRARIES,
PK_STATUS_ENUM_COPY_FILES,
PK_STATUS_ENUM_LAST
} PkStatusEnum;
/**
* PkExitEnum:
*
* How the backend exited
**/
typedef enum {
PK_EXIT_ENUM_UNKNOWN,
PK_EXIT_ENUM_SUCCESS,
PK_EXIT_ENUM_FAILED,
PK_EXIT_ENUM_CANCELLED,
PK_EXIT_ENUM_KEY_REQUIRED,
PK_EXIT_ENUM_EULA_REQUIRED,
PK_EXIT_ENUM_KILLED, /* when we forced the cancel, but had to SIGKILL */
PK_EXIT_ENUM_MEDIA_CHANGE_REQUIRED,
PK_EXIT_ENUM_NEED_UNTRUSTED,
PK_EXIT_ENUM_CANCELLED_PRIORITY,
PK_EXIT_ENUM_SKIP_TRANSACTION,
PK_EXIT_ENUM_REPAIR_REQUIRED,
PK_EXIT_ENUM_LAST
} PkExitEnum;
/**
* PkNetworkEnum:
**/
typedef enum {
PK_NETWORK_ENUM_UNKNOWN,
PK_NETWORK_ENUM_OFFLINE,
PK_NETWORK_ENUM_ONLINE,
PK_NETWORK_ENUM_WIRED,
PK_NETWORK_ENUM_WIFI,
PK_NETWORK_ENUM_MOBILE,
PK_NETWORK_ENUM_LAST
} PkNetworkEnum;
/**
* PkFilterEnum:
*
* The filter types
**/
typedef enum {
PK_FILTER_ENUM_UNKNOWN,
PK_FILTER_ENUM_NONE,
PK_FILTER_ENUM_INSTALLED,
PK_FILTER_ENUM_NOT_INSTALLED,
PK_FILTER_ENUM_DEVELOPMENT,
PK_FILTER_ENUM_NOT_DEVELOPMENT,
PK_FILTER_ENUM_GUI,
PK_FILTER_ENUM_NOT_GUI,
PK_FILTER_ENUM_FREE,
PK_FILTER_ENUM_NOT_FREE,
PK_FILTER_ENUM_VISIBLE,
PK_FILTER_ENUM_NOT_VISIBLE,
PK_FILTER_ENUM_SUPPORTED,
PK_FILTER_ENUM_NOT_SUPPORTED,
PK_FILTER_ENUM_BASENAME,
PK_FILTER_ENUM_NOT_BASENAME,
PK_FILTER_ENUM_NEWEST,
PK_FILTER_ENUM_NOT_NEWEST,
PK_FILTER_ENUM_ARCH,
PK_FILTER_ENUM_NOT_ARCH,
PK_FILTER_ENUM_SOURCE,
PK_FILTER_ENUM_NOT_SOURCE,
PK_FILTER_ENUM_COLLECTIONS,
PK_FILTER_ENUM_NOT_COLLECTIONS,
PK_FILTER_ENUM_APPLICATION,
PK_FILTER_ENUM_NOT_APPLICATION,
PK_FILTER_ENUM_DOWNLOADED, /* Since: 0.8.10 */
PK_FILTER_ENUM_NOT_DOWNLOADED, /* Since: 0.8.10 */
PK_FILTER_ENUM_LAST,
} PkFilterEnum;
/**
* PkRestartEnum:
*
* What restart we need to after a transaction, ordered by severity
**/
typedef enum {
PK_RESTART_ENUM_UNKNOWN,
PK_RESTART_ENUM_NONE,
PK_RESTART_ENUM_APPLICATION,
PK_RESTART_ENUM_SESSION,
PK_RESTART_ENUM_SYSTEM,
PK_RESTART_ENUM_SECURITY_SESSION, /* a library that is being used by this package has been updated for security */
PK_RESTART_ENUM_SECURITY_SYSTEM,
PK_RESTART_ENUM_LAST
} PkRestartEnum;
/**
* PkErrorEnum:
*
* The error type
**/
typedef enum {
PK_ERROR_ENUM_UNKNOWN,
PK_ERROR_ENUM_OOM,
PK_ERROR_ENUM_NO_NETWORK,
PK_ERROR_ENUM_NOT_SUPPORTED,
PK_ERROR_ENUM_INTERNAL_ERROR,
PK_ERROR_ENUM_GPG_FAILURE,
PK_ERROR_ENUM_PACKAGE_ID_INVALID,
PK_ERROR_ENUM_PACKAGE_NOT_INSTALLED,
PK_ERROR_ENUM_PACKAGE_NOT_FOUND,
PK_ERROR_ENUM_PACKAGE_ALREADY_INSTALLED,
PK_ERROR_ENUM_PACKAGE_DOWNLOAD_FAILED,
PK_ERROR_ENUM_GROUP_NOT_FOUND,
PK_ERROR_ENUM_GROUP_LIST_INVALID,
PK_ERROR_ENUM_DEP_RESOLUTION_FAILED,
PK_ERROR_ENUM_FILTER_INVALID,
PK_ERROR_ENUM_CREATE_THREAD_FAILED,
PK_ERROR_ENUM_TRANSACTION_ERROR,
PK_ERROR_ENUM_TRANSACTION_CANCELLED,
PK_ERROR_ENUM_NO_CACHE,
PK_ERROR_ENUM_REPO_NOT_FOUND,
PK_ERROR_ENUM_CANNOT_REMOVE_SYSTEM_PACKAGE,
PK_ERROR_ENUM_PROCESS_KILL,
PK_ERROR_ENUM_FAILED_INITIALIZATION,
PK_ERROR_ENUM_FAILED_FINALISE,
PK_ERROR_ENUM_FAILED_CONFIG_PARSING,
PK_ERROR_ENUM_CANNOT_CANCEL,
PK_ERROR_ENUM_CANNOT_GET_LOCK,
PK_ERROR_ENUM_NO_PACKAGES_TO_UPDATE,
PK_ERROR_ENUM_CANNOT_WRITE_REPO_CONFIG,
PK_ERROR_ENUM_LOCAL_INSTALL_FAILED,
PK_ERROR_ENUM_BAD_GPG_SIGNATURE,
PK_ERROR_ENUM_MISSING_GPG_SIGNATURE,
PK_ERROR_ENUM_CANNOT_INSTALL_SOURCE_PACKAGE,
PK_ERROR_ENUM_REPO_CONFIGURATION_ERROR,
PK_ERROR_ENUM_NO_LICENSE_AGREEMENT,
PK_ERROR_ENUM_FILE_CONFLICTS,
PK_ERROR_ENUM_PACKAGE_CONFLICTS,
PK_ERROR_ENUM_REPO_NOT_AVAILABLE,
PK_ERROR_ENUM_INVALID_PACKAGE_FILE,
PK_ERROR_ENUM_PACKAGE_INSTALL_BLOCKED,
PK_ERROR_ENUM_PACKAGE_CORRUPT,
PK_ERROR_ENUM_ALL_PACKAGES_ALREADY_INSTALLED,
PK_ERROR_ENUM_FILE_NOT_FOUND,
PK_ERROR_ENUM_NO_MORE_MIRRORS_TO_TRY,
PK_ERROR_ENUM_NO_DISTRO_UPGRADE_DATA,
PK_ERROR_ENUM_INCOMPATIBLE_ARCHITECTURE,
PK_ERROR_ENUM_NO_SPACE_ON_DEVICE,
PK_ERROR_ENUM_MEDIA_CHANGE_REQUIRED,
PK_ERROR_ENUM_NOT_AUTHORIZED,
PK_ERROR_ENUM_UPDATE_NOT_FOUND,
PK_ERROR_ENUM_CANNOT_INSTALL_REPO_UNSIGNED,
PK_ERROR_ENUM_CANNOT_UPDATE_REPO_UNSIGNED,
PK_ERROR_ENUM_CANNOT_GET_FILELIST,
PK_ERROR_ENUM_CANNOT_GET_REQUIRES,
PK_ERROR_ENUM_CANNOT_DISABLE_REPOSITORY,
PK_ERROR_ENUM_RESTRICTED_DOWNLOAD,
PK_ERROR_ENUM_PACKAGE_FAILED_TO_CONFIGURE,
PK_ERROR_ENUM_PACKAGE_FAILED_TO_BUILD,
PK_ERROR_ENUM_PACKAGE_FAILED_TO_INSTALL,
PK_ERROR_ENUM_PACKAGE_FAILED_TO_REMOVE,
PK_ERROR_ENUM_UPDATE_FAILED_DUE_TO_RUNNING_PROCESS,
PK_ERROR_ENUM_PACKAGE_DATABASE_CHANGED,
PK_ERROR_ENUM_PROVIDE_TYPE_NOT_SUPPORTED,
PK_ERROR_ENUM_INSTALL_ROOT_INVALID,
PK_ERROR_ENUM_CANNOT_FETCH_SOURCES,
PK_ERROR_ENUM_CANCELLED_PRIORITY,
PK_ERROR_ENUM_UNFINISHED_TRANSACTION,
PK_ERROR_ENUM_LOCK_REQUIRED,
PK_ERROR_ENUM_LAST
} PkErrorEnum;
/**
* PkGroupEnum:
*
* The group type
**/
typedef enum {
PK_GROUP_ENUM_UNKNOWN,
PK_GROUP_ENUM_ACCESSIBILITY,
PK_GROUP_ENUM_ACCESSORIES,
PK_GROUP_ENUM_ADMIN_TOOLS,
PK_GROUP_ENUM_COMMUNICATION,
PK_GROUP_ENUM_DESKTOP_GNOME,
PK_GROUP_ENUM_DESKTOP_KDE,
PK_GROUP_ENUM_DESKTOP_OTHER,
PK_GROUP_ENUM_DESKTOP_XFCE,
PK_GROUP_ENUM_EDUCATION,
PK_GROUP_ENUM_FONTS,
PK_GROUP_ENUM_GAMES,
PK_GROUP_ENUM_GRAPHICS,
PK_GROUP_ENUM_INTERNET,
PK_GROUP_ENUM_LEGACY,
PK_GROUP_ENUM_LOCALIZATION,
PK_GROUP_ENUM_MAPS,
PK_GROUP_ENUM_MULTIMEDIA,
PK_GROUP_ENUM_NETWORK,
PK_GROUP_ENUM_OFFICE,
PK_GROUP_ENUM_OTHER,
PK_GROUP_ENUM_POWER_MANAGEMENT,
PK_GROUP_ENUM_PROGRAMMING,
PK_GROUP_ENUM_PUBLISHING,
PK_GROUP_ENUM_REPOS,
PK_GROUP_ENUM_SECURITY,
PK_GROUP_ENUM_SERVERS,
PK_GROUP_ENUM_SYSTEM,
PK_GROUP_ENUM_VIRTUALIZATION,
PK_GROUP_ENUM_SCIENCE,
PK_GROUP_ENUM_DOCUMENTATION,
PK_GROUP_ENUM_ELECTRONICS,
PK_GROUP_ENUM_COLLECTIONS,
PK_GROUP_ENUM_VENDOR,
PK_GROUP_ENUM_NEWEST,
PK_GROUP_ENUM_LAST
} PkGroupEnum;
/**
* PkUpdateStateEnum:
*
* What state the update is in
**/
typedef enum {
PK_UPDATE_STATE_ENUM_UNKNOWN,
PK_UPDATE_STATE_ENUM_STABLE,
PK_UPDATE_STATE_ENUM_UNSTABLE,
PK_UPDATE_STATE_ENUM_TESTING,
PK_UPDATE_STATE_ENUM_LAST
} PkUpdateStateEnum;
/**
* PkInfoEnum:
*
* The enumerated types used in Package() - these have to refer to a specific
* package action, rather than a general state
**/
typedef enum {
PK_INFO_ENUM_UNKNOWN,
PK_INFO_ENUM_INSTALLED,
PK_INFO_ENUM_AVAILABLE,
PK_INFO_ENUM_LOW,
PK_INFO_ENUM_ENHANCEMENT,
PK_INFO_ENUM_NORMAL,
PK_INFO_ENUM_BUGFIX,
PK_INFO_ENUM_IMPORTANT,
PK_INFO_ENUM_SECURITY,
PK_INFO_ENUM_BLOCKED,
PK_INFO_ENUM_DOWNLOADING,
PK_INFO_ENUM_UPDATING,
PK_INFO_ENUM_INSTALLING,
PK_INFO_ENUM_REMOVING,
PK_INFO_ENUM_CLEANUP,
PK_INFO_ENUM_OBSOLETING,
PK_INFO_ENUM_COLLECTION_INSTALLED,
PK_INFO_ENUM_COLLECTION_AVAILABLE,
PK_INFO_ENUM_FINISHED,
PK_INFO_ENUM_REINSTALLING,
PK_INFO_ENUM_DOWNGRADING,
PK_INFO_ENUM_PREPARING,
PK_INFO_ENUM_DECOMPRESSING,
PK_INFO_ENUM_UNTRUSTED,
PK_INFO_ENUM_TRUSTED,
PK_INFO_ENUM_LAST
} PkInfoEnum;
/**
* PkDistroUpgradeEnum:
*
* The distro upgrade status
**/
typedef enum {
PK_DISTRO_UPGRADE_ENUM_UNKNOWN,
PK_DISTRO_UPGRADE_ENUM_STABLE,
PK_DISTRO_UPGRADE_ENUM_UNSTABLE,
PK_DISTRO_UPGRADE_ENUM_LAST
} PkDistroUpgradeEnum;
/**
* PkSigTypeEnum:
*
* The signature type type
**/
typedef enum {
PK_SIGTYPE_ENUM_UNKNOWN,
PK_SIGTYPE_ENUM_GPG,
PK_SIGTYPE_ENUM_LAST
} PkSigTypeEnum;
/**
* PkMediaTypeEnum:
*
* The media type
**/
typedef enum {
PK_MEDIA_TYPE_ENUM_UNKNOWN,
PK_MEDIA_TYPE_ENUM_CD,
PK_MEDIA_TYPE_ENUM_DVD,
PK_MEDIA_TYPE_ENUM_DISC,
PK_MEDIA_TYPE_ENUM_LAST
} PkMediaTypeEnum;
/**
* PkAuthorizeEnum:
*
* The authorization result
**/
typedef enum {
PK_AUTHORIZE_ENUM_UNKNOWN,
PK_AUTHORIZE_ENUM_YES,
PK_AUTHORIZE_ENUM_NO,
PK_AUTHORIZE_ENUM_INTERACTIVE,
PK_AUTHORIZE_ENUM_LAST
} PkAuthorizeEnum;
/**
* PkUpgradeKindEnum:
*
* The type of distribution upgrade to perform
**/
typedef enum {
PK_UPGRADE_KIND_ENUM_UNKNOWN,
PK_UPGRADE_KIND_ENUM_MINIMAL,
PK_UPGRADE_KIND_ENUM_DEFAULT,
PK_UPGRADE_KIND_ENUM_COMPLETE,
PK_UPGRADE_KIND_ENUM_LAST
} PkUpgradeKindEnum;
/**
* PkTransactionFlagEnum:
*
* The transaction flags that alter how the transaction is handled
**/
typedef enum {
PK_TRANSACTION_FLAG_ENUM_NONE, /* Since: 0.8.1 */
PK_TRANSACTION_FLAG_ENUM_ONLY_TRUSTED, /* Since: 0.8.1 */
PK_TRANSACTION_FLAG_ENUM_SIMULATE, /* Since: 0.8.1 */
PK_TRANSACTION_FLAG_ENUM_ONLY_DOWNLOAD, /* Since: 0.8.1 */
PK_TRANSACTION_FLAG_ENUM_LAST /* Since: 0.8.1 */
} PkTransactionFlagEnum;
/* general */
void pk_enum_test (gpointer user_data);
guint pk_enum_find_value (const PkEnumMatch *table,
const gchar *string)
G_GNUC_WARN_UNUSED_RESULT;
const gchar *pk_enum_find_string (const PkEnumMatch *table,
guint value)
G_GNUC_WARN_UNUSED_RESULT;
PkSigTypeEnum pk_sig_type_enum_from_string (const gchar *sig_type);
const gchar *pk_sig_type_enum_to_string (PkSigTypeEnum sig_type);
PkInfoEnum pk_info_enum_from_string (const gchar *info);
const gchar *pk_info_enum_to_string (PkInfoEnum info);
PkUpdateStateEnum pk_update_state_enum_from_string (const gchar *update_state);
const gchar *pk_update_state_enum_to_string (PkUpdateStateEnum update_state);
PkExitEnum pk_exit_enum_from_string (const gchar *exit);
const gchar *pk_exit_enum_to_string (PkExitEnum exit);
PkNetworkEnum pk_network_enum_from_string (const gchar *network);
const gchar *pk_network_enum_to_string (PkNetworkEnum network);
PkStatusEnum pk_status_enum_from_string (const gchar *status);
const gchar *pk_status_enum_to_string (PkStatusEnum status);
PkRoleEnum pk_role_enum_from_string (const gchar *role);
const gchar *pk_role_enum_to_string (PkRoleEnum role);
PkErrorEnum pk_error_enum_from_string (const gchar *code);
const gchar *pk_error_enum_to_string (PkErrorEnum code);
PkRestartEnum pk_restart_enum_from_string (const gchar *restart);
const gchar *pk_restart_enum_to_string (PkRestartEnum restart);
PkGroupEnum pk_group_enum_from_string (const gchar *group);
const gchar *pk_group_enum_to_string (PkGroupEnum group);
PkFilterEnum pk_filter_enum_from_string (const gchar *filter);
const gchar *pk_filter_enum_to_string (PkFilterEnum filter);
PkDistroUpgradeEnum pk_distro_upgrade_enum_from_string (const gchar *upgrade);
const gchar *pk_distro_upgrade_enum_to_string (PkDistroUpgradeEnum upgrade);
PkMediaTypeEnum pk_media_type_enum_from_string (const gchar *media_type);
const gchar *pk_media_type_enum_to_string (PkMediaTypeEnum media_type);
PkAuthorizeEnum pk_authorize_type_enum_from_string (const gchar *authorize_type);
const gchar *pk_authorize_type_enum_to_string (PkAuthorizeEnum authorize_type);
PkUpgradeKindEnum pk_upgrade_kind_enum_from_string (const gchar *upgrade_kind);
const gchar *pk_upgrade_kind_enum_to_string (PkUpgradeKindEnum upgrade_kind);
PkTransactionFlagEnum pk_transaction_flag_enum_from_string (const gchar *transaction_flag);
const gchar *pk_transaction_flag_enum_to_string (PkTransactionFlagEnum transaction_flag);
const gchar *pk_status_enum_to_localised_text (PkStatusEnum status);
const gchar *pk_info_enum_to_localised_past (PkInfoEnum info);
const gchar *pk_info_enum_to_localised_present (PkInfoEnum info);
const gchar *pk_role_enum_to_localised_present (PkRoleEnum role);
G_END_DECLS
#endif /* __PK_ENUM_H */
|