I am writting a DLL:
#include "stdafx.h" _DLLAPI int __stdcall myDLLFunc() { return test(4); } int test(int arg) { return arg * arg; } But when I try to compile it in MS VC++ Express it says:
error C3861: 'test': identifier not found
How do I call test from myDLLFunc? Am I missing the obvious?
Thanks in advance.