Skip to content

Instantly share code, notes, and snippets.

@sakex
Created June 23, 2020 18:29
Show Gist options
  • Save sakex/b31079c0ff2c8d595866139261dcffb2 to your computer and use it in GitHub Desktop.
Save sakex/b31079c0ff2c8d595866139261dcffb2 to your computer and use it in GitHub Desktop.
// bindings.hpp
extern "C" {
struct AbstractButtonBinding {
void (*click)(void *cont);
char const *(*inner_text)(void *cont);
void *context;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment