00001 /* 00002 Copyright (C) 2003-2004 Douglas Thain and the University of Wisconsin 00003 Copyright (C) 2005- The University of Notre Dame 00004 This software is distributed under a BSD-style license. 00005 See the file COPYING for details. 00006 */ 00007 #ifndef CATALOG_QUERY_H 00008 #define CATALOG_QUERY_H 00009 00010 #include <time.h> 00011 #include "nvpair.h" 00012 00013 struct catalog_query * catalog_query_create( const char *host, int port, time_t stoptime ); 00014 struct nvpair * catalog_query_read( struct catalog_query *q, time_t stoptime ); 00015 void catalog_query_delete( struct catalog_query *q ); 00016 00017 #endif