You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside the extern(C) block. Which is OK on Linux, but on Windows, that CEF_CALLBACK expands to __stdcall. So I believe this should be extern(System) pointer.
Given the preprocessor this is tricky to do but maybe some kind of hack could recognize the pattern anyway.
The text was updated successfully, but these errors were encountered:
I ran this on the chromium embedded framework. It has functions like this:
int(CEF_CALLBACK* move_to_next_attribute)(struct _cef_xml_reader_t* self);
Inside the extern(C) block. Which is OK on Linux, but on Windows, that CEF_CALLBACK expands to __stdcall. So I believe this should be extern(System) pointer.
Given the preprocessor this is tricky to do but maybe some kind of hack could recognize the pattern anyway.
The text was updated successfully, but these errors were encountered: