Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2019-03-31 03:28:51 +0300
committerAntenore Gatta <antenore@simbiosi.org>2019-03-31 03:28:51 +0300
commitfd3b2962ad820a74083cff6e031e5fcae39ae253 (patch)
tree4c8adcba324a266362ca7776b41734f978513ccc /src/remmina_unlock.h
parent348854f0ccb2ce8f9b010c23723da413bf97cc17 (diff)
WIP: core unlock code - password hashing functions
Diffstat (limited to 'src/remmina_unlock.h')
-rw-r--r--src/remmina_unlock.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/remmina_unlock.h b/src/remmina_unlock.h
index ff63c0605..7dea56324 100644
--- a/src/remmina_unlock.h
+++ b/src/remmina_unlock.h
@@ -35,18 +35,17 @@
#pragma once
typedef struct _RemminaUnlockDialog {
- GtkBuilder *builder;
- GtkDialog *dialog;
+ GtkBuilder * builder;
+ GtkDialog * dialog;
- GtkEntry *entry_unlock;
- GtkButton *button_unlock;
- GtkButton *button_unlock_cancel;
+ GtkEntry * entry_unlock;
+ GtkButton * button_unlock;
+ GtkButton * button_unlock_cancel;
- gboolean unlock_init;
- GTimer *timer;
-
- int retval;
+ gboolean unlock_init;
+ GTimer * timer;
+ int retval;
} RemminaUnlockDialog;
G_BEGIN_DECLS