I have an application written in SBCL and deployed as an executable on Windows. There was a need to interact with Excel through COM and another application through DDE (I know, I know).
DDE is simple enough for me to quickly wrap what I needed into a very small, easy-to-maintain C library. On the other hand, COM seems to be a big enough project to just implement this part of the functionality in Python using the extension library Win32
It annoys me that a lot of CL code is complemented by some Python, which has varying degrees of integration with the main project.
I have seen that LispWorks and Allegro CL allow you to interact with COM, but cannot find the open source implementation of the same function through google or CLiki.
Is there such a thing?
source share