// libcashcode_test.cpp : Defines the entry point for the console application.NDLE // #include #include int main(int argc, char* argv[]) { HINSTANCE lib = LoadLibrary (".\\TestDir\\dlltest.dll"); if (!lib){ printf ("ERROR! can't load Library from .\\TestDir\\\n"); exit(0); } printf ("All OK!\n"); FreeLibrary (lib); return 0; }