PDA

View Full Version : Sharemem and DLL


Bógáncs Sándor
17-Aug-2005, 03:03 PM
We are using FastShareMem in DLLs. What is the correct usage regarding
EurekaLog?

uses
FastShareMem,
ExceptionLog,....

or

uses
ExceptionLog,
FastShareMem,......


Best regards
Sándor Bógáncs
Falcon-Soft

admin
17-Aug-2005, 04:08 PM
Bógáncs Sándor wrote:
> We are using FastShareMem in DLLs. What is the correct usage regarding
> EurekaLog?
>
> uses
> FastShareMem,
> ExceptionLog,....
>
> or
>
> uses
> ExceptionLog,
> FastShareMem,......
>
>
> Best regards
> Sándor Bógáncs
> Falcon-Soft

The correct use is the first (before FastShareMem and after ExceptionLog)!

--
Best regards...

Fabio Dell'Aria.

Bógáncs Sándor
17-Aug-2005, 06:12 PM
admin wrote:

> Bógáncs Sándor wrote:
> > We are using FastShareMem in DLLs. What is the correct usage
> > regarding EurekaLog?
> >
> > uses
> > FastShareMem,
> > ExceptionLog,....
> >
> > or
> >
> > uses
> > ExceptionLog,
> > FastShareMem,......
> >
> >
> > Best regards
> > Sándor Bógáncs
> > Falcon-Soft
>
> The correct use is the first (before FastShareMem and after
> ExceptionLog)!

Thanks