opkg_upgrade.h 767 B

12345678910111213141516171819202122
  1. /* opkg_upgrade.c - the opkg package management system
  2. Copyright (C) 2003 Daniele Nicolodi <daniele@grinta.net>
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License as
  5. published by the Free Software Foundation; either version 2, or (at
  6. your option) any later version.
  7. This program is distributed in the hope that it will be useful, but
  8. WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. General Public License for more details.
  11. */
  12. #ifndef OPKG_UPGRADE_H
  13. #define OPKG_UPGRADE_H
  14. #include "active_list.h"
  15. int opkg_upgrade_pkg(pkg_t * old);
  16. struct active_list *prepare_upgrade_list(void);
  17. #endif