原dll中导出的接口如图: Head.h: struct zint_render_line { float x, y, length, width; struct zint_render_line *next; /* Pointer to next line */}; struct zint_render_string { float x, y, fsize; float width; /* Suggested string width, may be 0 if none recommended…
以下内容,我看了多篇文章,整合在一起,写的一个例子,关于dll工程的创建,请参考博客里另一篇文章:http://www.cnblogs.com/pingge/articles/3153571.html 有什么不对的欢迎指正!!! 1.头文件 //testdll.h #ifndef _TESTDLL_H_ #define _TESTDLL_H_ namespace MathFuncs { // This class is exported from the testdll.dll // Retur…