diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-22 16:48:40 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-22 16:48:40 +0000 |
commit | 5fc77e96954ae89aad298dc4789e0f252af1bb08 (patch) | |
tree | bdc8270d0097e96e6401a94447eb60d79f763c03 /loader | |
parent | 3d0ade83da9d1bbad3079a6654b593672400557d (diff) | |
download | anaconda-5fc77e96954ae89aad298dc4789e0f252af1bb08.tar.gz anaconda-5fc77e96954ae89aad298dc4789e0f252af1bb08.tar.xz anaconda-5fc77e96954ae89aad298dc4789e0f252af1bb08.zip |
added scsiWindow()
Diffstat (limited to 'loader')
-rw-r--r-- | loader/windows.c | 5 | ||||
-rw-r--r-- | loader/windows.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/loader/windows.c b/loader/windows.c index 277e9a256..396875416 100644 --- a/loader/windows.c +++ b/loader/windows.c @@ -41,3 +41,8 @@ void winStatus(int width, int height, char * title, newtRefresh(); newtFormDestroy(f); } + +void scsiWindow(char * driver) { + winStatus(40, 3, _("Loading SCSI driver"), + "Loading %s driver...", driver); +} diff --git a/loader/windows.h b/loader/windows.h index 1bdaba9fd..959199b2b 100644 --- a/loader/windows.h +++ b/loader/windows.h @@ -2,5 +2,6 @@ #define _WINDOWS_H_ void winStatus(int width, int height, char * title, char * text, ...); +void scsiWindow(char * driver); #endif /* _WINDOWS_H_ */ |