home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
500-599
/
ff599.lzh
/
InputView
/
Source.lha
/
IH-Test.c
next >
Wrap
C/C++ Source or Header
|
1992-01-31
|
1KB
|
38 lines
/*----------------------------------------------------------------------------
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);
}