diff options
Diffstat (limited to 'g10/main.h')
-rw-r--r-- | g10/main.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/g10/main.h b/g10/main.h index a63df5349..6f29e6fed 100644 --- a/g10/main.h +++ b/g10/main.h @@ -67,7 +67,14 @@ int openpgp_pk_algo_usage ( int algo ); int openpgp_md_test_algo( int algo ); int check_permissions(const char *path,int extension,int checkonly); void idea_cipher_warn( int show ); -char *pct_expando(const char *string,PKT_public_key *pk); + +struct expando_args +{ + PKT_public_key *pk; + byte imagetype; +}; + +char *pct_expando(const char *string,struct expando_args *args); int hextobyte( const char *s ); /*-- helptext.c --*/ |