Hello All,

I've got a third party DLL which I'd like to use. The dependancy viewer shows names like
_FuncName@04. These names are not un-decorated by the dep-viewer.
(names of the form ?FuncName@@FYI@@Z are undecorated properly)

I can use QLibrary to resolve("_FuncName@04") - it works - but I'm not sure if it's safe or if the next version of the DLL will have different decorations.
I know the function is called "FuncName" but QLibrary doesn't resolve that.

Can I get an undecorated name somehow? Has the maker of the DLL done something awkward?

thanks
K