DllExport在VC中是这样定义的
#define DllExport __declspec( dllexport )DLL(动态链接库)是靠DllExport来声明接口的,当一个函数加上了这个限制后,就成了这个动态库的接口函数;使用动态库时则要用DllImport来声明函数。