]> git.draconx.ca Git - upkg.git/blobdiff - src/upkg.h
upkg: Embed struct upkg into the private structure.
[upkg.git] / src / upkg.h
index c5da628b1660df074ad6cef64dd6d2234cef799f..044b10779a1d58b9013c7e5a76420258a3c7fbdb 100644 (file)
@@ -75,8 +75,11 @@ struct upkg {
        unsigned long flags;
 
        unsigned long name_count, export_count, import_count;
+};
 
-       struct upkg_private *priv;
+struct upkg_export {
+       const char *name;
+       unsigned long flags;
 };
 
 struct upkg_file {
@@ -84,7 +87,7 @@ struct upkg_file {
 
        int eof;
 
-       struct upkg *pkg;
+       struct upkg_priv *pkg;
        unsigned long base, offset, len;
 };
 
@@ -97,11 +100,10 @@ struct upkg *upkg_fopen(const char *path);
 int upkg_close(struct upkg *pkg);
 
 const char *upkg_get_name(struct upkg *pkg, unsigned long idx);
+const struct upkg_export *upkg_get_export(struct upkg *pkg, unsigned long idx);
 
-long   upkg_export_find(struct upkg *pkg, const char *name);
+long upkg_export_find(struct upkg *pkg, long parent, const char *name);
 
-unsigned long upkg_export_flags(struct upkg *pkg, unsigned long idx);
-const char *upkg_export_name(struct upkg *pkg, unsigned long idx);
 const char *upkg_export_class(struct upkg *pkg, unsigned long idx,
                               const char **package);