In export.def file one can put such lines:
LIBRARY plug
EXPORTS
funcName
main=funcName
What is the effect of exporting function in such a way? Does it export two function names, which belong to the same function? Or does it just exports function, giving it another name?
According to MSDN: