From: Adam Dickmeiss Date: Thu, 5 Oct 2006 14:58:58 +0000 (+0000) Subject: Use ZOOM_API(int) for public function ZOOM_connection_is_idle X-Git-Tag: YAZ.2.1.36~19 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=69d044abe3d3a3560267a16dc4db13386974d5e1;hp=757c8c0ffb82023c9059d9a5997515f65ad68561 Use ZOOM_API(int) for public function ZOOM_connection_is_idle --- diff --git a/src/zoom-c.c b/src/zoom-c.c index 33a14a4..2cb5bc9 100644 --- a/src/zoom-c.c +++ b/src/zoom-c.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom-c.c,v 1.91 2006-10-04 16:24:05 adam Exp $ + * $Id: zoom-c.c,v 1.92 2006-10-05 14:58:58 adam Exp $ */ /** * \file zoom-c.c @@ -206,7 +206,7 @@ ZOOM_task ZOOM_connection_add_task(ZOOM_connection c, int which) return *taskp; } -int ZOOM_connection_is_idle(ZOOM_connection c) +ZOOM_API(int) ZOOM_connection_is_idle(ZOOM_connection c) { return c->tasks ? 0 : 1; } @@ -1221,7 +1221,7 @@ static zoom_ret ZOOM_connection_send_init(ZOOM_connection c) odr_prepend(c->odr_out, "ZOOM-C", ireq->implementationName)); - version = odr_strdup(c->odr_out, "$Revision: 1.91 $"); + version = odr_strdup(c->odr_out, "$Revision: 1.92 $"); if (strlen(version) > 10) /* check for unexpanded CVS strings */ version[strlen(version)-2] = '\0'; ireq->implementationVersion =