From 7faa6a94a55cf2fbba6d9e68a79cd83c8d766ceb Mon Sep 17 00:00:00 2001 From: jsteube Date: Wed, 15 Nov 2023 17:06:37 +0000 Subject: [PATCH] Add dynamicx_t type for later use in potfile.c and outfile.c and also add to hashinfo_t --- include/types.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/include/types.h b/include/types.h index a9c0e0b85..09bb6a94f 100644 --- a/include/types.h +++ b/include/types.h @@ -889,6 +889,13 @@ typedef void * hc_dynfunc_t; * structs */ +typedef struct dynamicx +{ + char *dynamicx_buf; + u32 dynamicx_len; + +} dynamicx_t; + typedef struct user { char *user_name; @@ -916,9 +923,10 @@ typedef struct split typedef struct hashinfo { - user_t *user; - char *orighash; - split_t *split; + dynamicx_t *dynamicx_t; + user_t *user; + char *orighash; + split_t *split; } hashinfo_t;