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 >
C/C++ Source or Header  |  1992-01-31  |  1KB  |  38 lines

  1. /*----------------------------------------------------------------------------
  2.    File   :    IH-Test.c
  3.    Projekt:    IHandler-Module
  4.    Inhalt :    main
  5.  
  6.    Version:    0.1
  7.    Datum  :    23.03.91
  8.  
  9.    Autor  :    Uwe Röhm
  10.    Adresse:    Auber Str. 25,  W-6209 Hohenstein 4
  11.     (Semester) Wörthstr. 18    W-8390 Passau
  12.    Bemerkung:
  13. ----------------------------------------------------------------------------*/
  14. #include "IHandler.h"
  15.  
  16. /*  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --
  17.    Funktion  : main
  18.    Parameter : --
  19.    Rückgabe  : --
  20.  
  21.    Aufruf von: --
  22.    UnterFunks: InitIHanlder (IHanlder.c)
  23.                CloseIHandler(    "     )
  24.    Autor     : Floyd
  25.    Datum     : 23.03.91
  26.    Bemerkung:  s.o.
  27. --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  --  */
  28. VOID main ()
  29. {
  30. struct IHandCom *ihc;
  31.  
  32.    ihc = InitIHandler (NULL, 20, 20);
  33.    ihc->does_control = FALSE;
  34.    LaunchIHandler (ihc, 51, "huhu");
  35.    Wait (1 << ihc->SigBit);
  36.    CloseIHandler(ihc);
  37. }
  38.