Skip to content

Instantly share code, notes, and snippets.

@cleak
Created January 5, 2019 07:08
Show Gist options
  • Save cleak/4301cbd9b930ffa5d1bf590ca8d4616c to your computer and use it in GitHub Desktop.
Save cleak/4301cbd9b930ffa5d1bf590ca8d4616c to your computer and use it in GitHub Desktop.
GenericGreeter_VTable* GetVTable(GenericGreeter* obj) {
GenericGreeter_VTable** vtable_ptr = (GenericGreeter_VTable**)obj;
return *(vtable_ptr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment