back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/linux_client/data_decryption.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux_client/data_decryption.h')
-rw-r--r--linux_client/data_decryption.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/linux_client/data_decryption.h b/linux_client/data_decryption.h
new file mode 100644
index 0000000..08772fe
--- /dev/null
+++ b/linux_client/data_decryption.h
@@ -0,0 +1,16 @@
+#ifndef DATA_DECRYPTION_H_SENTRY
+#define DATA_DECRYPTION_H_SENTRY
+
+#include "client.h"
+
+void decrypt_set_state(struct client *cl, char **end_p);
+int decrypt_get_number(char *start_p, char **end_p);
+void decrypt_set_base_info(struct client *cl, char *start_p, char **end_p);
+void decrypt_set_position_whose_turn(struct client *cl, char *start_p,
+ char **end_p);
+void decrypt_set_card_queue(struct client *cl, char *start_p, char **end_p);
+void decrypt_set_card_acceptance_status(struct client *cl, char *start_p);
+void decrypt_set_spectator_mode(struct client *cl, char *start_p);
+void decrypt_set_durak_position(struct client *cl, char *start_p);
+
+#endif