
Windows编程
xyping_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows窗口框架
#include<Windows.h> LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPreInstance, LPSTR lpCmdLine, int nCmdSh...原创 2018-05-01 12:43:25 · 335 阅读 · 0 评论 -
共享内存
#include<iostream> #include<Windows.h> #pragma warning(disable:4996) using namespace std; int main() { char szName[] = "xxx"; char szData[] = "123456"; LPVOID pBuffer; HANDLE hMap = ...原创 2018-06-27 09:32:53 · 247 阅读 · 0 评论