forked from cromer/pamac-classic
24 lines
893 B
C
24 lines
893 B
C
#ifndef ALPM_VALA_H
|
|
#define ALPM_VALA_H
|
|
|
|
#include <alpm.h>
|
|
|
|
typedef struct __alpm_list_iterator_t {
|
|
alpm_list_t* pos;
|
|
} alpm_list_iterator_t;
|
|
|
|
void* alpm_list_get_data (alpm_list_t *list);
|
|
void* alpm_list_nth_data (alpm_list_t *list, size_t n);
|
|
alpm_list_t* alpm_list_add_str (alpm_list_t *list, const char *str);
|
|
alpm_list_t *alpm_list_remove_data (alpm_list_t *list, const void *needle, alpm_list_fn_cmp fn);
|
|
alpm_list_t *alpm_list_sort_data (alpm_list_t *list, alpm_list_fn_cmp fn);
|
|
alpm_list_t *alpm_list_new ();
|
|
void alpm_list_free_all (alpm_list_t *list);
|
|
void alpm_list_iterator (alpm_list_t *list, alpm_list_iterator_t* i);
|
|
void* alpm_list_iterator_next_value (alpm_list_iterator_t *iter);
|
|
|
|
alpm_pkg_t* alpm_pkg_load_file (alpm_handle_t *handle, const char *filename, int full, alpm_siglevel_t level);
|
|
alpm_list_t* alpm_pkg_get_files_list (alpm_pkg_t* pkg);
|
|
|
|
#endif //!ALPM_VALA_H
|