mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
Update signature of agent_query() to match the rest of the world.
[originally from svn r3178]
This commit is contained in:
parent
24a1942810
commit
ccc9ec2bce
@ -1,4 +1,4 @@
|
|||||||
/* $Id: mac.c,v 1.57 2003/04/05 14:34:06 ben Exp $ */
|
/* $Id: mac.c,v 1.58 2003/05/10 11:40:18 ben Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2003 Ben Harris
|
* Copyright (c) 1999, 2003 Ben Harris
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -661,11 +661,13 @@ int agent_exists(void)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void agent_query(void *in, int inlen, void **out, int *outlen)
|
int agent_query(void *in, int inlen, void **out, int *outlen,
|
||||||
|
void (*callback)(void *, void *, int), void *callback_ctx)
|
||||||
{
|
{
|
||||||
|
|
||||||
*out = NULL;
|
*out = NULL;
|
||||||
*outlen = 0;
|
*outlen = 0;
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Temporary null routines for testing. */
|
/* Temporary null routines for testing. */
|
||||||
|
Loading…
Reference in New Issue
Block a user