摘要: 1. extern "C"指定使用C语言的命名修饰约定防止C++编译器进行名称重整(name mangling)使得导出的函数名在DLL中保持原样便于其他语言(C、C#、VB、Python等)调用对比示例:// C++风格(有名称重整)int __declspec(dllexport) add(in 阅读全文
posted @ 2025-12-04 10:00 巨兽~墨菲特 阅读(8) 评论(0) 推荐(0)
摘要: #include <Windows.h> #include <CommCtrl.h> #include <windowsx.h> #include "resource.h" /** 通用控件 需要捕获notify消息 WM_NOTIFY 消息 当事件发生或控件需要一些信息时,由公共控件发送到其父窗口 阅读全文
posted @ 2025-12-04 09:25 巨兽~墨菲特 阅读(5) 评论(0) 推荐(0)