摘要: #include <iostream> #include <Windows.h> int main() { // 获取当前模块的句柄 HMODULE hModule = GetModuleHandle(NULL); HRSRC hRes = ::FindResource(hModule, MAKEI 阅读全文
posted @ 2024-11-05 00:40 乘舟凉 阅读(0) 评论(0) 推荐(0) 编辑
摘要: windows 消息循环 以下是一个简单的处理按钮点击的示例: #include <windows.h> #define BUTTON_ID 1 // 定义按钮ID LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LP 阅读全文
posted @ 2024-11-05 00:38 乘舟凉 阅读(2) 评论(0) 推荐(0) 编辑