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
Would be great to have an @vba wrapper as a companion project.
VBA types are pretty simple. Return by reference, strings are char* and length; same for arrays.
Same deal:
generate extern(C) wrappers with marshalling of D types
generate .def file
generate VBA declarations referring to the DLL
That's pretty much it for something useful.
see experimental/excelwrap in kalcore for a simple example
The text was updated successfully, but these errors were encountered:
haha! I didn't expect to see a chap called vba here.
attributes in D are prefixed with the at sign '@'
and Microsoft called their Basic for Excel Visual Basic for Applications.
so....
Would be great to have an @vba wrapper as a companion project.
VBA types are pretty simple. Return by reference, strings are char* and length; same for arrays.
Same deal:
That's pretty much it for something useful.
see experimental/excelwrap in kalcore for a simple example
The text was updated successfully, but these errors were encountered: