mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Enhanced gpg-conect-agent scripting.
Typo fixes in comments.
This commit is contained in:
parent
bea6c580f2
commit
259a40c830
8 changed files with 620 additions and 86 deletions
|
@ -117,3 +117,24 @@ gcry_control (enum gcry_ctl_cmds CMD, ...)
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
gcry_set_outofcore_handler (gcry_handler_no_mem_t h, void *opaque)
|
||||
{
|
||||
(void)h;
|
||||
(void)opaque;
|
||||
}
|
||||
|
||||
void
|
||||
gcry_set_fatalerror_handler (gcry_handler_error_t fnc, void *opaque)
|
||||
{
|
||||
(void)fnc;
|
||||
(void)opaque;
|
||||
}
|
||||
|
||||
void
|
||||
gcry_set_log_handler (gcry_handler_log_t f, void *opaque)
|
||||
{
|
||||
(void)f;
|
||||
(void)opaque;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue