summaryrefslogtreecommitdiffstats
path: root/loader/modules.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-07-19 19:00:32 +0000
committerErik Troan <ewt@redhat.com>1999-07-19 19:00:32 +0000
commit21e09c6da1652e378ed26de8fd367f521bd59e67 (patch)
tree6e845029134b99735a5dd5ac664ad7d1b40fff0a /loader/modules.h
parent01c3adadca9f1035f03759ec03d934f6aa5c5fdc (diff)
downloadanaconda-21e09c6da1652e378ed26de8fd367f521bd59e67.tar.gz
anaconda-21e09c6da1652e378ed26de8fd367f521bd59e67.tar.xz
anaconda-21e09c6da1652e378ed26de8fd367f521bd59e67.zip
*** empty log message ***
Diffstat (limited to 'loader/modules.h')
-rw-r--r--loader/modules.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/loader/modules.h b/loader/modules.h
new file mode 100644
index 000000000..212a35727
--- /dev/null
+++ b/loader/modules.h
@@ -0,0 +1,13 @@
+#ifndef H_MODULES
+
+typedef struct moduleList_s * moduleList;
+typedef struct moduleDependency_s * moduleDeps;
+
+int mlReadLoadedList(moduleList * list);
+void mlFreeList(moduleList list);
+int mlLoadDeps(moduleDeps moduleDepList, const char * path);
+moduleDeps mlNewDeps(void);
+int mlLoadModule(struct moduleInfo * modInfo, moduleList modLoaded,
+ moduleDeps modDeps);
+
+#endif