lucasg / Dependencies

A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
MIT License
8.47k stars 697 forks source link

Unable to list global exported functions within the namespace #253

Open xfmjn opened 7 months ago

xfmjn commented 7 months ago

header file namespace aaa { bool MTK_COMMON_DLL_EXPORT icompare(const std::string& str1, const std::string& str2); }; cpp file bool aaa::icompare(const std::string& str1, const std::string& str2) { }; Depends walker can list the icompare function,Dependencies can't。