Date: Sun, 25 Aug 2013 16:25:05 GMT From: mattbw@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r256540 - soc2013/mattbw/backend/query Message-ID: <201308251625.r7PGP5V2045831@socsvn.freebsd.org>
index | next in thread | raw e-mail
Author: mattbw Date: Sun Aug 25 16:25:05 2013 New Revision: 256540 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=256540 Log: Forgot find.h. I spoke too soon about the previous commit building... Added: soc2013/mattbw/backend/query/find.h Added: soc2013/mattbw/backend/query/find.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2013/mattbw/backend/query/find.h Sun Aug 25 16:25:05 2013 (r256540) @@ -0,0 +1,30 @@ +/*- + * Copyright (C) 2013 Matt Windsor <mattbw@FreeBSD.org> + * + * Licensed under the GNU General Public License Version 2 + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#ifndef _PKGNG_BACKEND_QUERY_FIND_H_ +#define _PKGNG_BACKEND_QUERY_FIND_H_ + +#include "pkg.h" /* struct pkgdb */ +#include "id.h" /* struct query_id */ + +struct pkgdb_it *query_find_local(struct query_id *query_id, struct pkgdb *db, unsigned int load_flags); +struct pkgdb_it *query_find_remote(struct query_id *query_id, struct pkgdb *db, unsigned int load_flags); + +#endif /* !_PKGNG_BACKEND_QUERY_FIND_H_ */help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308251625.r7PGP5V2045831>
