// Simple test program to test creation of a dll using the command prompt
// and visual studio 

// auth: bkenwright@xbdev.net

// HOW TO COMPILE:
// c:> cl /LD testdll.cpp

extern "C" __declspec(dllexport) void __cdecl test();

void __cdecl test ()
{

}


// WARNING:
// cl /LD testdll.obj testdll.def
// Is so we can include a definition file,  as the resulting DLL will have exported names like
// _MyFunction@8, as is shown in the `MSVC DLL (no DEF)' column above. To create symbols with no 
// decoration, we must use a DEF file.

// testdll.def
/*
LIBRARY "testdll"

EXPORTS
   test
*/
