diff options
author | Erik Troan <ewt@redhat.com> | 1999-07-23 00:13:17 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-07-23 00:13:17 +0000 |
commit | 3c4fb59e017a840ad902ec6f9730f1324fb3453e (patch) | |
tree | cd24f43b7e25efcef75455bc3fc422a9b7f04371 /loader/modules.h | |
parent | 801c8bac72e2e5051a350e3025a12a27c9ee29df (diff) | |
download | anaconda-3c4fb59e017a840ad902ec6f9730f1324fb3453e.tar.gz anaconda-3c4fb59e017a840ad902ec6f9730f1324fb3453e.tar.xz anaconda-3c4fb59e017a840ad902ec6f9730f1324fb3453e.zip |
load modules by name
Diffstat (limited to 'loader/modules.h')
-rw-r--r-- | loader/modules.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/modules.h b/loader/modules.h index fc2a50f4e..cceefc9cc 100644 --- a/loader/modules.h +++ b/loader/modules.h @@ -7,7 +7,7 @@ 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, +int mlLoadModule(char * modName, moduleList modLoaded, moduleDeps modDeps, int testing); char ** mlGetDeps(moduleDeps modDeps, const char * modName); |