From: Adam Dickmeiss Date: Tue, 11 Oct 2005 18:24:33 +0000 (+0000) Subject: Move ZOOM_task definition to private ZOOM header X-Git-Tag: YAZ.2.1.10~45 X-Git-Url: http://jsfdemo.indexdata.com/?a=commitdiff_plain;h=abc454158e80cb39f9afb4d2731c8c1919e37450;p=yaz-moved-to-github.git Move ZOOM_task definition to private ZOOM header --- diff --git a/include/yaz/zoom.h b/include/yaz/zoom.h index 09383a8..4dcf792 100644 --- a/include/yaz/zoom.h +++ b/include/yaz/zoom.h @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom.h,v 1.26 2005-06-25 15:46:03 adam Exp $ + * $Id: zoom.h,v 1.27 2005-10-11 18:24:33 adam Exp $ */ /** * \file zoom.h @@ -30,7 +30,6 @@ typedef struct ZOOM_options_p *ZOOM_options; typedef struct ZOOM_query_p *ZOOM_query; typedef struct ZOOM_connection_p *ZOOM_connection; typedef struct ZOOM_resultset_p *ZOOM_resultset; -typedef struct ZOOM_task_p *ZOOM_task; typedef struct ZOOM_record_p *ZOOM_record; typedef struct ZOOM_scanset_p *ZOOM_scanset; typedef struct ZOOM_package_p *ZOOM_package; diff --git a/src/zoom-p.h b/src/zoom-p.h index a1ef953..22bc4d6 100644 --- a/src/zoom-p.h +++ b/src/zoom-p.h @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: zoom-p.h,v 1.7 2005-06-25 15:46:07 adam Exp $ + * $Id: zoom-p.h,v 1.8 2005-10-11 18:24:33 adam Exp $ */ /** * \file zoom-p.h @@ -24,6 +24,8 @@ struct ZOOM_query_p { char *query_string; }; +typedef struct ZOOM_task_p *ZOOM_task; + #define STATE_IDLE 0 #define STATE_CONNECTING 1 #define STATE_ESTABLISHED 2