摘要: ▲ Demo 示例 新建基于对话框的 Demo程序。 头文件: // 自定义数据类型,用来测试消息数据传递 typedef struct tagStudent { CString Name; int Age; }Student_t; // Dlg header public: afx_msg voi 阅读全文
posted @ 2024-02-05 17:18 double64 阅读(103) 评论(0) 推荐(0)
摘要: #include "Windows.h" #include <stdlib.h> #include <stdio.h> DWORD WINAPI ThreadFunc(LPVOID param) { printf("启动线程\n"); return 0; } int main() { DWORD t 阅读全文
posted @ 2024-02-05 13:10 double64 阅读(21) 评论(0) 推荐(0)