diff options
author | kotontrion <[email protected]> | 2024-09-18 20:29:21 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-09-18 20:29:21 +0200 |
commit | 10b9cde328947d038029f2496f43da75138abb3d (patch) | |
tree | 82be4c0aeaf3404f6680f4003f6929a944960d85 /lib/auth/include/astal-auth.h | |
parent | de096e16da8a76c60b97ca0238a1cd1b545fa295 (diff) |
add version constants to auth, river and wireplumber libs
Diffstat (limited to 'lib/auth/include/astal-auth.h')
-rw-r--r-- | lib/auth/include/astal-auth.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/auth/include/astal-auth.h b/lib/auth/include/astal-auth.h deleted file mode 100644 index a3073ff..0000000 --- a/lib/auth/include/astal-auth.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef ASTAL_AUTH_PAM_H -#define ASTAL_AUTH_PAM_H - -#include <gio/gio.h> -#include <glib-object.h> - -G_BEGIN_DECLS - -#define ASTAL_AUTH_TYPE_PAM (astal_auth_pam_get_type()) - -G_DECLARE_FINAL_TYPE(AstalAuthPam, astal_auth_pam, ASTAL_AUTH, PAM, GObject) - -void astal_auth_pam_set_username(AstalAuthPam *self, const gchar *username); - -const gchar *astal_auth_pam_get_username(AstalAuthPam *self); - -void astal_auth_pam_set_service(AstalAuthPam *self, const gchar *service); - -const gchar *astal_auth_pam_get_service(AstalAuthPam *self); - -gboolean astal_auth_pam_start_authenticate(AstalAuthPam *self); - -void astal_auth_pam_supply_secret(AstalAuthPam *self, const gchar *secret); - -gboolean astal_auth_pam_authenticate(const gchar *password, GAsyncReadyCallback result_callback, - gpointer user_data); - -gssize astal_auth_pam_authenticate_finish(GAsyncResult *res, GError **error); - -G_END_DECLS - -#endif // !ASTAL_AUTH_PAM_H |