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

  1. #ifndef _BGH_H_
  2. #define _BGH_H_
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8.  
  9. ULONG    BGH_Load(const char* Name);
  10. void    BGH_Free(ULONG BGH_ID);
  11. char*    BGH_GetHelpString(ULONG BGH_ID, WORD Typ, WORD Guppe, WORD Index);
  12.  
  13. void    BGH_Action(ULONG BGH_ID, WORD Mx, WORD My, WORD Typ, WORD Guppe, WORD Index);
  14.  
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18.  
  19.  
  20. #endif  /* _BGH_H_ */
  21.