CANalyzer and CANoe are two well-known tools that offer extensive simulation, development, and analysis of various bus systems and protocols. Both flagship tools, owned by Vector, are equipped with their own programming language called CAPL (CAN Access Programming Language). This event-based language allows simulation of network and node behavior and testing. Its syntax is similar to C, but CAPL does not require any file associations to compile or run like C/C++. It does, however, have a set of internally defined functions available to users. When these functions cannot help a user to perform a specific task, the best solution is to implement the task in a DLL.
2021-04-28 17:48:49 4.08MB CAPL/dll
1
这是一个完整的可运行实例.在MFC下配置环境参数和调用C#生成的DLL库函数.附带有关键点简要说明和相关C#DLL库文件
2021-04-26 21:54:42 22.48MB MFC 调用C#DLL 应用实例
1
basler相机的动态库文件
2021-04-21 09:01:42 1.37MB dll 库文件
1
hMailServer安装包(含邮件服务安装文件、hMailServer汉化文件和32位libmysql.dll库),附详细安装教程:https://blog.csdn.net/antma/article/details/106937659
2021-04-15 12:39:02 4.82MB hMailServer libmysql.dll hMailServer汉化文件
1
springboot+jna/jni调用动态so/dll库
2021-04-13 22:00:16 17KB springboot jna so/dll
1
主要为大家详细介绍了使用微信PC端的截图dll库实现微信截图功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
2021-04-13 15:26:45 36KB 微信 截图 dll
1
MySql8.0版本dll库
2021-04-06 14:09:25 422KB 库文件
1
自己编写的一个CRM模块产品VC DLL库的代码,里面有基础的USB HID上层库,协议代码等等。
2021-03-31 18:01:26 5.24MB crm dll vc++ c#
1
本库文件可以用于labview调用海康威视摄像头DLL库文件,具体使用方法见稍后上传的说明文档
2021-03-27 11:12:38 20.37MB 海康威视 库文件
1
可以把c++的dll库的头文件自动转换为C#语言。 安装完成后打开,找到最后一个选项卡,在Native Code Snippet 中输入c代码,检查下面有没有错误,没有的话,点击Generate按钮,在右侧会自动生成c#代码。 最后把生成c#代码的“”替换成要用到的dll库文件名即可,如替换成“OVPS.dll”。 如输入c代码: #ifdef OVPSIVD_API_API_EXPORTS # define OVPSIVD_API extern "C" __declspec(dllexport) #else # define OVPSIVD_API extern "C" __declspec(dllimport) #endif #define OVPSIVD_CALL_METHOD __stdcall OVPSIVD_API void OVPSIVD_CALL_METHOD OVPSIVD_Cleanup(); 生成c#代码: public partial class NativeConstants { /// OVPSIVD_API -> extern "C" __declspec(dllimport) /// Error generating expression: Expression is not parsable. Treating value as a raw string public const string OVPSIVD_API = "extern \"C\" __declspec(dllimport)"; /// OVPSIVD_CALL_METHOD -> __stdcall /// Error generating expression: Value __stdcall is not resolved public const string OVPSIVD_CALL_METHOD = "__stdcall"; } public partial class NativeMethods { /// Return Type: void [System.Runtime.InteropServices.DllImportAttribute("", EntryPoint="OVPSIVD_Cleanup", CallingConvention=System.Runtime.InteropServices.CallingConvention.StdCall)] public static extern void OVPSIVD_Cleanup() ; }
2021-03-16 14:34:57 1.46MB c++库 自动转换 C#代码 DllImport
1