How to use a dll outside of the system path

后端 未结 3 1448
说谎
说谎 2020-12-05 08:25

I made an application that uses the openssl dlls (libeay32.dll and ssleay32.dll). It is indy using them, I don\'t call the dlls directly.

T

3条回答
  •  情歌与酒
    2020-12-05 08:42

    If you are using an up-to-date version of Indy 10, the IdSSLOpenSSLHeaders unit has a public IdOpenSSLSetLibPath() function to tell Indy which custom folder to look in for the OpenSSL DLLs:

    procedure IdOpenSSLSetLibPath(const APath: String);
    

提交回复
热议问题