Skip to content

Does not work on 64-bit #5

@ghost

Description

On 64 bit machines, IntByReference (4 bytes) needs to be replaced by PointerByReference (8 bytes), e.g.

int FT_OpenEx(Pointer pvArg1, int dwFlags, IntByReference ftHandle);
int FT_Close(int ftHandle);

should be

int FT_OpenEx(Pointer pvArg1, int dwFlags, PointerByReference ftHandle);
int FT_Close(Pointer ftHandle);

and so on ...

Otherwise, thanks a lot for all the work.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions