Skip to content

Instantly share code, notes, and snippets.

@fjolnir
Last active August 29, 2015 14:08
Show Gist options
  • Save fjolnir/6d76749939937c972b6d to your computer and use it in GitHub Desktop.
Save fjolnir/6d76749939937c972b6d to your computer and use it in GitHub Desktop.
- (MenuRef)carbonMenuRef
{
MenuRef (*NSGetCarbonMenu)(NSMenu *) = dlsym(RTLD_SELF, "_NSGetCarbonMenu");
MenuRef (*NSGetCarbonMenu2)(NSMenu *) = dlsym(RTLD_SELF, "_NSGetCarbonMenu2");
if(NSGetCarbonMenu && NSGetCarbonMenu2)
return NSGetCarbonMenu(self) ?: NSGetCarbonMenu2(self);
else if(NSGetCarbonMenu)
return NSGetCarbonMenu(self)
else if(NSGetCarbonMenu2)
return NSGetCarbonMenu2(self)
else
return NULL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment