libopkg: add opkg_read_config_files() function
[oweals/opkg-lede.git] / libopkg / opkg.h
index 12a264a2c0bbb97add6dd17f15b572cce88cb958..0ee18875b56b16bd504a5a70a61036048e4c562b 100644 (file)
@@ -1,8 +1,8 @@
-/* opkg.h - the itsy package management system
+/* opkg.h - the opkg  package management system
 
-   Carl D. Worth
+   Thomas Wood <thomas@openedhand.com>
 
-   Copyright (C) 2001 University of Southern California
+   Copyright (C) 2008 OpenMoko Inc
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
    General Public License for more details.
 */
 
-#ifndef OPKG_H
-#define OPKG_H
+typedef struct _opkg_t opkg_t;
 
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
+opkg_t* opkg_new ();
+void opkg_free (opkg_t *opkg);
+void opkg_get_option (opkg_t *opkg, char *option, void **value);
+void opkg_set_option (opkg_t *opkg, char *option, void *value);
+int opkg_read_config_files (opkg_t *opkg);
 
-#include "includes.h"
-#include "opkg_conf.h"
-#include "opkg_message.h"
-
-#include "opkg_error.h"
-#include "opkg_defines.h"
-#include "opkg_state.h"
-
-#endif
+int opkg_install_package (opkg_t *opkg, char *package_name);
+int opkg_remove_package (opkg_t *opkg, char *package_name);
+int opkg_upgrade_package (opkg_t *opkg, char *package_name);
+int opkg_upgrade_all (opkg_t *opkg);
+int opkg_update_package_lists (opkg_t *opkg);