home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser 1998 October / STC_CD_10_1998.iso / BASE / BGH / C___1 / MAIN.CXX < prev   
C/C++ Source or Header  |  1998-09-26  |  507b  |  28 lines

  1. #include <aes.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <portab.h>
  5. #include "bgh.h"
  6.  
  7.  
  8. int main()
  9. {
  10.     BGH Help("bgh.bgh");
  11.     if(Help)     // operator signed()
  12.     {
  13.         int mx,my,egal,whand;
  14.         appl_init();
  15.  
  16.         whand = wind_create(0, 0,0,1,1);
  17.         wind_open(whand, 0, 0, 640, 480);
  18.  
  19.         evnt_button( 1, 2, 2,  &mx, &my, &egal, &egal);
  20.  
  21.         Help.Action(mx, my, 1, 1, 3);
  22.  
  23.         evnt_button( 1, 2, 0,  &egal, &egal, &egal, &egal);
  24.         wind_close(whand);
  25.         wind_delete(whand);
  26.         appl_exit();
  27.     }
  28. }