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 the GNU General Public 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 00027 struct catalog_query *catalog_query_create(const char *host, int port, time_t stoptime); 00028 00037 struct nvpair *catalog_query_read(struct catalog_query *q, time_t stoptime); 00038 00042 void catalog_query_delete(struct catalog_query *q); 00043 00044 #endif