Only one Windows application is troubling me before I can fully move to Linux. It's a stock charting application (couldn't find any decent one native to Linux) that I'm running using Wine.
This application has its own language and it allows the user to create objects from COM components to implement external functions. In Windows, I created a program using Mono that exposes certain functions that allow me to interact with the charting software.
Example:
myObj = CreateObject("myApp.application");
myObj.data = Price;
volatility = myObj.Volatility;
Question: How could I expose the ComVisible
components of "myApp" which is running in the Linux environment under Mono runtime to the charting software running in Wine?