On Saturday 21 April 2012 17:57:06 Ivanko B wrote:

> > For SSL dll's call initializeopenssl() with the wanted dll filepaths
> > for  "libssl32.dll" and "libeay32.dll".
>
> Can it be done optionally in the MSEgui DLL loader? (smth like
> "opt_appdir4dll")
>
I don't like it, too special. Please use initializeopenssl(). The default 
sonames are in msessl.pas:
"
{$ifdef mswindows}
 openssllib: array[0..1] of filenamety = ('ssleay32.dll','libssl32.dll');
 opensslutillib: array[0..0] of filenamety = ('libeay32.dll');
{$else}
 openssllib: array[0..4] of filenamety = (
     'libssl.so.1.0.0','libssl.so.0.9.8','libssl.so.0.9.7','libssl.so.0.9.6',
     'libssl.so');
 opensslutillib: array[0..4] of filenamety = (
           'libcrypto.so.1.0.0','libcrypto.so.0.9.8','libcrypto.so.0.9.7',
           'libcrypto.so.0.9.6','libcrypto.so');
{$endif}
"

Martin

------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to