Add dynamicx_t type for later use in potfile.c and outfile.c and also add to hashinfo_t

pull/3909/head
jsteube 6 months ago
parent 252e7614da
commit 7faa6a94a5

@ -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;

Loading…
Cancel
Save