/************************************************************** * * WBTF.c - Brings the Workbench screen to the front. * * Copyright (c) 1989, Peter Cherna * * Created: March 26, 1989 * Modified: March 26, 1989 Release 1.2: August 29, 1989 * * Auto: cc -q -o RAM:.o * Auto: ln RAM:.o -lc -o * **************************************************************/ #include #ifndef INTUITION_INTUITION_H #include #endif struct IntuitionBase *IntuitionBase = NULL; main() { IntuitionBase = (struct IntuitionBase *) OpenLibrary("intuition.library",0L); WBenchToFront(); CloseLibrary(IntuitionBase); }