2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* group.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2007-12-10 23:55:22 -05:00
|
|
|
* Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -05:00
|
|
|
* 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
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_GROUP_H
|
|
|
|
#define _ALPM_GROUP_H
|
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
/* Groups */
|
2005-03-29 12:18:59 -05:00
|
|
|
#define GRP_NAME_LEN 256
|
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "alpm.h"
|
|
|
|
|
|
|
|
struct __pmgrp_t {
|
2005-03-29 12:18:59 -05:00
|
|
|
char name[GRP_NAME_LEN];
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *packages; /* List of strings */
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-02-17 17:35:26 -05:00
|
|
|
pmgrp_t *_alpm_grp_new(void);
|
2007-04-26 20:15:51 -04:00
|
|
|
void _alpm_grp_free(pmgrp_t *grp);
|
2006-02-17 17:35:26 -05:00
|
|
|
int _alpm_grp_cmp(const void *g1, const void *g2);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
#endif /* _ALPM_GROUP_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|