Skip to content

Instantly share code, notes, and snippets.

@steve-s
Created July 21, 2022 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steve-s/01f7b3e8d148cab329894f7bcb62c68f to your computer and use it in GitHub Desktop.
Save steve-s/01f7b3e8d148cab329894f7bcb62c68f to your computer and use it in GitHub Desktop.
HPyContext ctx_ver1 = {
// ...
.ctx_Absolute = &legacy_absolute,
};
HPyContext ctx_ver2 = {
// ...
.ctx_Absolute = &new_fancy_absolute,
};
// ...
MyLegacyPackage_Init(&ctx_ver1);
MyNewShinyPackage_Init(&ctx_ver2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment