2
0

pkg_dest.h 1011 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pkg_dest.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_H
  14. #define PKG_DEST_H
  15. #include <stdio.h>
  16. typedef struct pkg_dest pkg_dest_t;
  17. struct pkg_dest {
  18. char *name;
  19. char *root_dir;
  20. char *opkg_dir;
  21. char *lists_dir;
  22. char *info_dir;
  23. char *status_file_name;
  24. FILE *status_fp;
  25. };
  26. int pkg_dest_init(pkg_dest_t * dest, const char *name, const char *root_dir,
  27. const char *lists_dir);
  28. void pkg_dest_deinit(pkg_dest_t * dest);
  29. #endif