Maximum length of function names in DLL

If I export functions to a DLL, is there a limit on the length of function names?

+5
source share
1 answer

When using the Microsoft compiler, the function name of the exported C ++ class has a limit of 4096. This is explained here .

From experiments, it was found that for the exported C, the functions also have the same restriction.

+2
source

All Articles