home *** CD-ROM | disk | FTP | other *** search
- /*----------------------------------------------------------------------------
- File : IH-Test.c
- Projekt: IHandler-Module
- Inhalt : main
-
- Version: 0.1
- Datum : 23.03.91
-
- Autor : Uwe Röhm
- Adresse: Auber Str. 25, W-6209 Hohenstein 4
- (Semester) Wörthstr. 18 W-8390 Passau
- Bemerkung:
- ----------------------------------------------------------------------------*/
- #include "IHandler.h"
-
- /* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
- Funktion : main
- Parameter : --
- Rückgabe : --
-
- Aufruf von: --
- UnterFunks: InitIHanlder (IHanlder.c)
- CloseIHandler( " )
- Autor : Floyd
- Datum : 23.03.91
- Bemerkung: s.o.
- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */
- VOID main ()
- {
- struct IHandCom *ihc;
-
- ihc = InitIHandler (NULL, 20, 20);
- ihc->does_control = FALSE;
- LaunchIHandler (ihc, 51, "huhu");
- Wait (1 << ihc->SigBit);
- CloseIHandler(ihc);
- }
-