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 * structs
*/ */
typedef struct dynamicx
{
char *dynamicx_buf;
u32 dynamicx_len;
} dynamicx_t;
typedef struct user typedef struct user
{ {
char *user_name; char *user_name;
@ -916,9 +923,10 @@ typedef struct split
typedef struct hashinfo typedef struct hashinfo
{ {
user_t *user; dynamicx_t *dynamicx_t;
char *orighash; user_t *user;
split_t *split; char *orighash;
split_t *split;
} hashinfo_t; } hashinfo_t;

Loading…
Cancel
Save