Visual Studio comes with a crapload of tools, but most of which wont ever be used.
However, "dumpbin" is quite handy if you want to quickly see what functions are exported from a DLL file.
Fire up the Visual Studio Command Prompt and navigate to your DLL file. Then type:
dumpbin /exports Test.dll
Whalla, the function names should be listed below.