forked from KolibriOS/kolibrios
11387d6d18
git-svn-id: svn://kolibrios.org@5725 a494cfbc-eb01-0410-851d-a64ba20cac60
40 lines
612 B
C
40 lines
612 B
C
#ifndef __COLLECTION_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "list.h"
|
|
|
|
typedef struct
|
|
{
|
|
list_t groups;
|
|
char *issue;
|
|
}collection_t;
|
|
|
|
typedef struct
|
|
{
|
|
list_t list;
|
|
list_t packages;
|
|
char *name;
|
|
}pkg_group_t;
|
|
|
|
typedef struct package
|
|
{
|
|
list_t list;
|
|
int id;
|
|
char *name;
|
|
char *version;
|
|
char *filename;
|
|
char *description;
|
|
}package_t;
|
|
|
|
collection_t* load_collection_file(const char *name);
|
|
collection_t* load_collection_buffer(const char *buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __COLLECTION_H__ */
|