initial commit

This commit is contained in:
root
2023-06-12 09:14:09 +02:00
commit b4912f303e
2545 changed files with 209350 additions and 0 deletions

Binary file not shown.

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_ */

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,17 @@
Arensdorf 8.2.2000
The docs for BGH v1.4R2 contained an error. It said that the minimum
version for Slbopen had to be 0x0101. But the library that I published
only had Version 0x0002. The result of this was that the library was
not loaded.
I have therefore altered the docs so that the minimum version requested
should be 0x0002. Furthermore I have changed the library version to
0x0102. Thanks to that the new library also works with programs that
request at least Version 0x0101.
See you!
Armin