#if !defined (__SECRET_INSIDE_HEADER__) && !defined (SECRET_COMPILATION)
#error "Only <libsecret/secret.h> can be included directly."
#endif
#ifndef __SECRET_PROMPT_H__
#define __SECRET_PROMPT_H__
#include <gio/gio.h>
#include "secret-types.h"
G_BEGIN_DECLS
#define SECRET_TYPE_PROMPT …
#define SECRET_PROMPT(inst) …
#define SECRET_PROMPT_CLASS(class) …
#define SECRET_IS_PROMPT(inst) …
#define SECRET_IS_PROMPT_CLASS(class) …
#define SECRET_PROMPT_GET_CLASS(inst) …
SecretPrompt;
SecretPromptClass;
SecretPromptPrivate;
struct _SecretPrompt { … };
struct _SecretPromptClass { … };
GType secret_prompt_get_type (void) G_GNUC_CONST;
GVariant * secret_prompt_run (SecretPrompt *self,
const gchar *window_id,
GCancellable *cancellable,
const GVariantType *return_type,
GError **error);
GVariant * secret_prompt_perform_sync (SecretPrompt *self,
const gchar *window_id,
GCancellable *cancellable,
const GVariantType *return_type,
GError **error);
void secret_prompt_perform (SecretPrompt *self,
const gchar *window_id,
const GVariantType *return_type,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GVariant * secret_prompt_perform_finish (SecretPrompt *self,
GAsyncResult *result,
GError **error);
G_END_DECLS
#endif