C/C++交互
文章平均质量分 67
lht02032003
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MSVC2019使用boost1-75,找不到while.hpp
MSVC2019 编译64bit boost libs后,编写简单测试代码,出现,错误: fatal error C1083: 无法打开包括文件: “boost/preprocessor/control/detail/msvc/while.hpp”: No such file or directory 解决方法很简单,去到boost\preprocessor\control\detail目录下建立msvc文件夹,把while.hpp文件扔进去,就可以了 ...原创 2020-12-23 16:36:47 · 257 阅读 · 0 评论 -
C#调用C/C++动态库的参数传递---数组指针的传递
C/C++ CODE: extern "C" __declspec(dllexport) void Test(int* ptr_int, unsigned char* ptr_byte); ... extern "C" __declspec(dllexport) void Test(int* ptr_int, unsigned char* ptr_byte) { for(int i =原创 2012-12-21 14:48:01 · 3595 阅读 · 0 评论 -
个人笔记:JNI---1
windows环境 eclipse中编写好java和C/C++的接口函数类 public class CPP_Interface { private native byte[] _GetDllVersion(byte[] in); public void GetLibVersion(){ ...... } } 编译后,在bin目录下 javah -jni com.CP原创 2015-09-14 16:51:22 · 953 阅读 · 0 评论 -
个人笔记C/C++调用java
参考这个文章http://www.iteye.com/topic/460152转载 2015-09-14 16:53:40 · 356 阅读 · 0 评论 -
个人笔记---JNI2-调试
http://www.cnblogs.com/yejg1212/archive/2013/06/07/3125392.html点击打开链接转载 2015-09-14 17:32:04 · 354 阅读 · 0 评论
分享