本文相关内容来源于: https://www.zhihu.com/question/265453795 《平方的独特思路》 稍微修改优化之后的code: #include <iostream> #include<cstdlib> #include<time> const...
编程/Program
C++调用易语言编写的DLL的几点注意
1. DLL的调用方式 #include<Windows.h> HMODULE mod = LoadLibrary("xxx.dll"); typedef unsigned char* (CALLBACK _stdcall *ProcessSub)(int,int); ProcessSub pf = (ProcessSub)GetProcAddress(mod,...