#include int __declspec(dllimport) depFunc( int, int ); void __declspec(dllexport) boot() { printf( "ExtDll: depFunc returned: %d\n ", depFunc( 12345, 98765 ) ); return; }