vhanla 2 Posted November 26, 2018 (edited) Just created a DLL project, compiled and it shows the following exported functions. __dbk_fcall_wrapper dbkFCallWrapperAddr TMethodImplementationIntercept Are they necessary? Any way to hide them? Edited November 26, 2018 by vhanla Share this post Link to post
TiGü 21 Posted November 30, 2018 They aren't necessary. Unfortunately, you can't hide them with Delphi Tools. https://stackoverflow.com/questions/24718716/delphi-xe6-dll-unwanted-export-tmethodimplementationintercept Share this post Link to post
djhfwk 0 Posted December 23, 2018 On 11/27/2018 at 4:27 AM, vhanla said: Just created a DLL project, compiled and it shows the following exported functions. __dbk_fcall_wrapper dbkFCallWrapperAddr TMethodImplementationIntercept Are they necessary? Any way to hide them? not only dll but also exe have these exports. if you have source, modify the source and use BuildRTLGroup to rebuild the source, no source, use the tool to remove the exports. Share this post Link to post