2
0

pkg_dest_list.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pkg_dest_list.h - the opkg package management system
  2. Carl D. Worth
  3. Copyright (C) 2001 University of Southern California
  4. This program is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU General Public License as
  6. published by the Free Software Foundation; either version 2, or (at
  7. your option) any later version.
  8. This program is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. General Public License for more details.
  12. */
  13. #ifndef PKG_DEST_LIST_H
  14. #define PKG_DEST_LIST_H
  15. #include "pkg_dest.h"
  16. typedef struct void_list_elt pkg_dest_list_elt_t;
  17. typedef struct void_list pkg_dest_list_t;
  18. void pkg_dest_list_elt_init(pkg_dest_list_elt_t * elt, pkg_dest_t * data);
  19. void pkg_dest_list_elt_deinit(pkg_dest_list_elt_t * elt);
  20. void pkg_dest_list_init(pkg_dest_list_t * list);
  21. void pkg_dest_list_deinit(pkg_dest_list_t * list);
  22. pkg_dest_t *pkg_dest_list_append(pkg_dest_list_t * list, const char *name,
  23. const char *root_dir, const char *lists_dir);
  24. void pkg_dest_list_push(pkg_dest_list_t * list, pkg_dest_t * data);
  25. pkg_dest_list_elt_t *pkg_dest_list_pop(pkg_dest_list_t * list);
  26. #endif