Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Idea: User callback structs for API #2

Closed
bqqbarbhg opened this issue Jun 13, 2019 · 0 comments
Closed

Idea: User callback structs for API #2

bqqbarbhg opened this issue Jun 13, 2019 · 0 comments

Comments

@bqqbarbhg
Copy link
Collaborator

Bundle callback functions and their user pointers into structs.

typedef struct ufbx_alloc_fn_s {
	void *(*func)(void *user, size_t size);
	void *user;
} ufbx_alloc_fn;

typedef struct ufbx_free_fn_s {
	void (*func)(void *user, void *ptr);
	void *user;
} ufbx_free_fn;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant