1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Allow configuraton of pinentry tooltip.

Other minor buf fixes.
This commit is contained in:
Werner Koch 2007-12-04 11:23:31 +00:00
parent a9b7f3356b
commit 8c20500a5d
44 changed files with 7277 additions and 5746 deletions

View file

@ -33,7 +33,9 @@ struct private_membuf_s
typedef struct private_membuf_s membuf_t;
/* Return the current length of the membuf. */
#define get_membuf_len(a) ((a)->len)
#define get_membuf_len(a) ((a)->len)
#define is_membuf_ready(a) ((a)->buf || (a)->out_of_core)
#define MEMBUF_ZERO { 0, 0, NULL, 0}
void init_membuf (membuf_t *mb, int initiallen);
void init_membuf_secure (membuf_t *mb, int initiallen);