On Thu, 1 Mar 2007, Jason P Sage wrote:
> I've made some progress with the simpleipc unit however I found a disturbing
> "quirk" for the Windows implementation.
>
> I can definitely make an IPC Server and an IPC client that can send messages
> to that server...
>
> However
>
> If the IPC
I've made some progress with the simpleipc unit however I found a disturbing
"quirk" for the Windows implementation.
I can definitely make an IPC Server and an IPC client that can send messages
to that server...
However
If the IPC client is invoked as a cgi application via a web server, it n
Jonas Maebe schrieb:
>
> On 28 feb 2007, at 18:06, Florian Klaempfl wrote:
>
>> Jonas Maebe schrieb:
>>>
>>> function makeqword(d1, d2: dword): qword;
>>> begin
>>> result:=(qword(d2) shl 32) or d1;
>>> end;
>>
>> Cleaner imo:
>>
>> lo(result):=d1;
>> hi(result):=d2;
>
> I think this is a lot
On 28 feb 2007, at 18:06, Florian Klaempfl wrote:
Jonas Maebe schrieb:
function makeqword(d1, d2: dword): qword;
begin
result:=(qword(d2) shl 32) or d1;
end;
Cleaner imo:
lo(result):=d1;
hi(result):=d2;
I think this is a lot less clean (if only because lo/hi have
different meanings i
Jonas Maebe schrieb:
>
> On 28 feb 2007, at 17:51, Luiz Americo Pereira Camara wrote:
>
>> I'm looking to a function that will take two DWord as arguments and
>> and returns a Qword where the low 4 bytes are the first DWord and the
>> High 4 bytes the second DWord.
>
> function makeqword(d1, d2
Jonas Maebe wrote:
On 28 feb 2007, at 17:51, Luiz Americo Pereira Camara wrote:
I'm looking to a function that will take two DWord as arguments and
and returns a Qword where the low 4 bytes are the first DWord and the
High 4 bytes the second DWord.
function makeqword(d1, d2: dword): qword;
Hi,
I'm looking to a function that will take two DWord as arguments and
and returns a Qword where the low 4 bytes are the first DWord and the
High 4 bytes the second DWord.
Something like MakeLong of win unit.
BTW
TQWordRec = record
D1: Dword;
D2: DWord;
end;
TQWordRec will have the
On 28 feb 2007, at 17:51, Luiz Americo Pereira Camara wrote:
I'm looking to a function that will take two DWord as arguments
and and returns a Qword where the low 4 bytes are the first DWord
and the High 4 bytes the second DWord.
function makeqword(d1, d2: dword): qword;
begin
result:=(
Hi,
I'm looking to a function that will take two DWord as arguments and
and returns a Qword where the low 4 bytes are the first DWord and the
High 4 bytes the second DWord.
Something like MakeLong of win unit.
BTW
TQWordRec = record
D1: Dword;
D2: DWord;
end;
TQWordRec will have t