Zitat von
Mystic:
Code:
typedef struct ALCdevice_struct ALCdevice;
typedef struct ALCcontext_struct ALCcontext;
Die Typen ALCdevice_struct und ALCcontext_struct kann ich nirgendwo finden. Wie kann ich das jetzt übersetzen?
So:
Delphi-Quellcode:
type
PALCcontext = ^ALCcontext;
ALContext = ALCcontext_struct;
PALCdevice = ^ALDevice;
ALCdevice = ALCdevice_struct;
Die Deklarationen beider Structs *müssen* irgendwo zu finden sein, ansonsten dürfte die .h garnicht erst funktionieren