diff options
author | Erik Troan <ewt@redhat.com> | 2001-10-03 23:32:37 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 2001-10-03 23:32:37 +0000 |
commit | 0e5929d0486328301e1dafbc15fa969b8d0f49d3 (patch) | |
tree | 4240a5839d9d233a8c466e769855260a323f38bd /loader/modules.h | |
parent | e69dd253220c61a134f1c93f33947597c6130e23 (diff) | |
download | anaconda-0e5929d0486328301e1dafbc15fa969b8d0f49d3.tar.gz anaconda-0e5929d0486328301e1dafbc15fa969b8d0f49d3.tar.xz anaconda-0e5929d0486328301e1dafbc15fa969b8d0f49d3.zip |
*** empty log message ***
Diffstat (limited to 'loader/modules.h')
-rw-r--r-- | loader/modules.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/loader/modules.h b/loader/modules.h index d2d44ca33..3deed97f2 100644 --- a/loader/modules.h +++ b/loader/modules.h @@ -27,9 +27,12 @@ int mlReadLoadedList(moduleList * list); void mlFreeList(moduleList list); int mlLoadDeps(moduleDeps * moduleDepList, const char * path); moduleDeps mlNewDeps(void); -int mlLoadModule(char * modName, void * location, moduleList modLoaded, +int mlLoadModule(const char * modName, void * location, moduleList modLoaded, moduleDeps modDeps, char ** args, moduleInfoSet modInfo, int flags); +int mlLoadModuleSet(const char * origModNames, void * location, + moduleList modLoaded, moduleDeps modDeps, char ** args, + moduleInfoSet modInfo, int flags); char ** mlGetDeps(moduleDeps modDeps, const char * modName); int mlModuleInList(const char * modName, moduleList list); int mlWriteConfModules(moduleList list, int fd); |