summaryrefslogtreecommitdiffstats
path: root/isys/isys.h
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>1999-07-29 01:47:17 +0000
committerErik Troan <ewt@redhat.com>1999-07-29 01:47:17 +0000
commit95b9cd760f857aebd842b81af01c2cd608770e86 (patch)
tree707a0988406742a764dd1436c3cae6b2ba949db5 /isys/isys.h
parent37af17c1f4ba698872a6b30a09f3df5745c9efd0 (diff)
downloadanaconda-95b9cd760f857aebd842b81af01c2cd608770e86.tar.gz
anaconda-95b9cd760f857aebd842b81af01c2cd608770e86.tar.xz
anaconda-95b9cd760f857aebd842b81af01c2cd608770e86.zip
moved struct moduleInfoSet_s to .h file
Diffstat (limited to 'isys/isys.h')
-rw-r--r--isys/isys.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/isys/isys.h b/isys/isys.h
index 4b7557fe7..8e2364b07 100644
--- a/isys/isys.h
+++ b/isys/isys.h
@@ -20,6 +20,11 @@ struct moduleInfo {
struct moduleArg * args;
};
+struct moduleInfoSet_s {
+ struct moduleInfo * moduleList;
+ int numModules;
+};
+
typedef struct moduleInfoSet_s * moduleInfoSet;
moduleInfoSet isysNewModuleInfoSet(void);