72fa44d0fd
So we can remove this old boilerplate code. In order to be able to use that, the autoptr function for PolkitAgentListener was added as well. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/66
34 lines
1.4 KiB
C
34 lines
1.4 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 20011 Red Hat, Inc.
|
|
*
|
|
* Author: David Zeuthen <davidz@redhat.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define POLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE
|
|
#include <polkitagent/polkitagent.h>
|
|
#include <glib-object.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* Polkit doesn't have g_autoptr support, thus we have to manually set the autoptr function here */
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (PolkitAgentListener, g_object_unref)
|
|
|
|
#define SHELL_TYPE_POLKIT_AUTHENTICATION_AGENT (shell_polkit_authentication_agent_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellPolkitAuthenticationAgent, shell_polkit_authentication_agent, SHELL, POLKIT_AUTHENTICATION_AGENT, PolkitAgentListener)
|
|
|
|
ShellPolkitAuthenticationAgent *shell_polkit_authentication_agent_new (void);
|
|
|
|
void shell_polkit_authentication_agent_complete (ShellPolkitAuthenticationAgent *agent,
|
|
gboolean dismissed);
|
|
void shell_polkit_authentication_agent_register (ShellPolkitAuthenticationAgent *agent,
|
|
GError **error_out);
|
|
void shell_polkit_authentication_agent_unregister (ShellPolkitAuthenticationAgent *agent);
|
|
|
|
G_END_DECLS
|
|
|