home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser 1998 October / STC_CD_10_1998.iso / BASE / BGH / C___1 / BGH.H < prev    next >
C/C++ Source or Header  |  1998-09-26  |  310b  |  20 lines

  1. #ifndef _BGH_H_
  2. #define _BGH_H_
  3.  
  4.  
  5. class BGH
  6. {
  7. public:
  8.     BGH(const char* Name);
  9.     ~BGH();
  10.     WORD operator signed();
  11.  
  12.     char*    GetHelpString(WORD Typ, WORD Guppe, WORD Index);
  13.  
  14.     void    Action(WORD Mx, WORD My, WORD Typ, WORD Guppe, WORD Index);
  15. private:
  16.     void*        MemoryBase;
  17. };
  18.  
  19. #endif  /* _BGH_H_ */
  20.