Is there a way in the free version to share variables between two running applications. I have one space application that is graphics intensive and I want to have a second app running on a second touch screen monitor that will display game variables on gauges and allow touch control of switchs. I see that component object models are supported but I can find no examples. Currently I am trying to pass variables between apps via USB serial. Thank.
Re: Sharing variables between separate running applications
[Re: codewriter]
#420088 03/19/1315:4403/19/1315:44
Get the pointer of your variable, open the process via OpenProcess (API) and use WriteProcessMemory to write to the variable. If the address is not static make a sginature scan of it, (byte patterns are used, "x" for static, "?" for dynamic)
Re: Sharing variables between separate running applications
[Re: Ch40zzC0d3r]
#420100 03/19/1317:4403/19/1317:44
Thank you. I cannot find a OpenProcess function in lite-c. Are you referring to the windows api. Since both of my application are written and running lite-c I would like to use a engine function instead of a windows call. I have tried passing address in visual studio but get writing outside of boundary errors.
Re: Sharing variables between separate running applications
[Re: codewriter]
#420110 03/19/1319:0003/19/1319:00