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
I was wondering if you know of how I might be able to call the xlc functions using this. Typically, this is done with the Excel12(...) or Excel12v(...) functions.
#[no_mangle]pubextern"stdcall"fnxlAlert() -> LPXLOPER12{let result = Box::new(Variant:;from_str("Tried to alert"));let alert_text = Box::new(Variant::from_str("Hello from Rust"));let alert_text_xloper = Box::into_raw(alert_text)asLPXLOPER12;unsafe{Excel12(xlcAlert asi32, alert_text_xloper,1);}Box::into_raw(result)asLPXLOPER12}
I get an "unresolved external symbol" error
The text was updated successfully, but these errors were encountered:
Hi Marcus,
I was wondering if you know of how I might be able to call the xlc functions using this. Typically, this is done with the Excel12(...) or Excel12v(...) functions.
I get an "unresolved external symbol" error
The text was updated successfully, but these errors were encountered: