1. Sharewing memory between programs in win XP ?
How would I do this? I've tried just peek()ing at the memory address,
but it just returns a random value.
2. Re: Sharewing memory between programs in win XP ?
CoJaBo wrote:
> Won't run:
> memshare.ew:28
> Invalid argument type
>
> Global & Local Variables
>
>> library by Mario Steele and Jason Mirwald in the
>
>> archives.
The C routine GetLastError takes 0 arguments, not 1.
Just replace {0} by {}
and later there's a c_func call to GetLastError that will also
have to change from {0} to {}.
I haven't tested this, but it looks like the only problem.
This error is caught by Euphoria 2.4 but not by Euphoria 2.3
Mario or Jason should fix "Share Memory Between Processes"
and resubmit memshare.zip to the archives.
Regards,
Rob Craig
Rapid Deployment Software
http://www.RapidEuphoria.com
3. Re: Sharewing memory between programs in win XP ?
>From: Robert Craig <rds at RapidEuphoria.com>
>Subject: Re: Sharewing memory between programs in win XP ?
>
>CoJaBo wrote:
>>Won't run:
>>memshare.ew:28
>>Invalid argument type
>>
>>Global & Local Variables
>>
>>>library by Mario Steele and Jason Mirwald in the
>>
>>>archives.
>
>The C routine GetLastError takes 0 arguments, not 1.
>Just replace {0} by {}
>and later there's a c_func call to GetLastError that will also
>have to change from {0} to {}.
>I haven't tested this, but it looks like the only problem.
>
Yep, that's all that needs to be changed.
>This error is caught by Euphoria 2.4 but not by Euphoria 2.3
>
>Mario or Jason should fix "Share Memory Between Processes"
>and resubmit memshare.zip to the archives.
>
>Regards,
> Rob Craig
> Rapid Deployment Software
> http://www.RapidEuphoria.com
>
4. Re: Sharewing memory between programs in win XP ?
I have been nice enough to modify this, and re-submit it to the Archives.
Sorry for this.
EuMario