From: Ben Harris Date: Sat, 10 May 2003 11:40:18 +0000 (+0000) Subject: Update signature of agent_query() to match the rest of the world. X-Git-Tag: r8855-g4f798d~1392 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=f3f0c793848b7b49cadddf07a048dfe9baefc9b1;p=PuTTY_svn.git Update signature of agent_query() to match the rest of the world. git-svn-id: http://svn.tartarus.org/sgt/putty@3178 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mac/mac.c b/mac/mac.c index 45b4b211..eb69224d 100644 --- a/mac/mac.c +++ b/mac/mac.c @@ -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 * All rights reserved. @@ -661,11 +661,13 @@ int agent_exists(void) 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; *outlen = 0; + return 1; } /* Temporary null routines for testing. */