first commit - moved from local dev to git

This commit is contained in:
firebee
2022-10-02 10:09:40 +02:00
commit bbb3ef9333
1861 changed files with 167960 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#ifndef _BGH_H_
#define _BGH_H_
#ifdef __cplusplus
extern "C" {
#endif
#define BGHI_COOKIE 0x42474849 /* 'BGHI' */
typedef struct
{
WORD Version;
char* Info;
ULONG (*Load)(const char* Name, WORD Mode);
void (*Free)(ULONG BGH_Handle);
char* (*GetHelpString)(ULONG BGH_Handle, WORD Section, WORD Guppe, WORD Index);
}BGH_Cookie;
#ifdef __cplusplus
}
#endif
#endif /* _BGH_H_ */