summary refs log tree commit diff stats
path: root/plugins/fishlim/keystore.h
diff options
context:
space:
mode:
authorBakasura <bakasura@protonmail.ch>2020-07-13 18:27:27 -0500
committerGitHub <noreply@github.com>2020-07-13 16:27:27 -0700
commitc5a798beec0f24f6828cd3c43bbefd1e18a9d33a (patch)
tree3d79de60cbcaf71562bf93c8b59db926eb020671 /plugins/fishlim/keystore.h
parent2f376953f3fd7d358aa25bf29c01d70a57d40e0c (diff)
FiSHLiM: Support for CBC mode + more commands (#2347)
Diffstat (limited to 'plugins/fishlim/keystore.h')
-rw-r--r--plugins/fishlim/keystore.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/fishlim/keystore.h b/plugins/fishlim/keystore.h
index 3d90606a..4af46693 100644
--- a/plugins/fishlim/keystore.h
+++ b/plugins/fishlim/keystore.h
@@ -28,9 +28,10 @@
 #include <stddef.h>
 
 #include <glib.h>
+#include "fish.h"
 
-char *keystore_get_key(const char *nick);
-gboolean keystore_store_key(const char *nick, const char *key);
+char *keystore_get_key(const char *nick, enum fish_mode *mode);
+gboolean keystore_store_key(const char *nick, const char *key, enum fish_mode mode);
 gboolean keystore_delete_nick(const char *nick);
 
 #endif