home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser 2002 January / STC_CD_01_2002.iso / APP / EURO110 / ET110 / BGH14R3 / BGH.H < prev    next >
C/C++ Source or Header  |  1999-01-24  |  416b  |  27 lines

  1. #ifndef _BGH_H_
  2. #define _BGH_H_
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. #define BGHI_COOKIE 0x42474849 /* 'BGHI' */
  9.  
  10. typedef struct
  11. {
  12.     WORD    Version;
  13.     char*    Info;
  14.     ULONG    (*Load)(const char* Name, WORD Mode);
  15.     void    (*Free)(ULONG BGH_Handle);
  16.     char*    (*GetHelpString)(ULONG BGH_Handle, WORD Section, WORD Guppe, WORD Index);
  17. }BGH_Cookie;
  18.  
  19.  
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25.  
  26. #endif  /* _BGH_H_ */
  27.