From owner-svn-soc-all@FreeBSD.ORG Sat Jun 22 15:20:39 2013 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 711375AC for ; Sat, 22 Jun 2013 15:20:39 +0000 (UTC) (envelope-from mattbw@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) by mx1.freebsd.org (Postfix) with ESMTP id 62E7B1132 for ; Sat, 22 Jun 2013 15:20:39 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5MFKdlH033782 for ; Sat, 22 Jun 2013 15:20:39 GMT (envelope-from mattbw@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.7/8.14.6/Submit) id r5MFKd42033772 for svn-soc-all@FreeBSD.org; Sat, 22 Jun 2013 15:20:39 GMT (envelope-from mattbw@FreeBSD.org) Date: Sat, 22 Jun 2013 15:20:39 GMT Message-Id: <201306221520.r5MFKd42033772@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to mattbw@FreeBSD.org using -f From: mattbw@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r253358 - soc2013/mattbw/dummy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2013 15:20:39 -0000 Author: mattbw Date: Sat Jun 22 15:20:39 2013 New Revision: 253358 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=253358 Log: get_details.h somehow got missed out, oops. readded. Added: soc2013/mattbw/dummy/get_details.h Added: soc2013/mattbw/dummy/get_details.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ soc2013/mattbw/dummy/get_details.h Sat Jun 22 15:20:39 2013 (r253358) @@ -0,0 +1,30 @@ +/*- + * Copyright (C) 2013 Matt Windsor + * + * 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_GET_DETAILS_H_ +#define _PKGNG_BACKEND_GET_DETAILS_H_ + +#include +#include +#include + +gboolean get_details_for(gchar *package_id, PkBackend *backend, struct pkgdb *db); + +#endif /* _PKGNG_BACKEND_GET_DETAILS_H_ */