Window API
班公湖里洗过脚
上马击狂胡,下马草军书
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Window API查询
Windows desktop applications--> Develop--> Desktop technologies-->Windows System--> Windows System Information --> System Information -->System Information Reference -->System Information Function转载 2017-03-27 10:29:57 · 896 阅读 · 0 评论 -
Windows共享内存示例
windows下的进程间通信有多种方式,管道,无名管道,共享内存,消息,Socket等,但不的方式使用的场景不同,如现在有一个场景是,程序A(C++语言)调用程序B(C语言)时时获取程序B的进度,如果用管道读取一个进度就退出了,使用起来不方便,而共享内存可以时时读取放在共享内存上的进度时,操作起来也比较方便,使用的API有三个,如下: CreateFileMapping()//创建共享内存 MapViewOfFile()//将共享内存映射到进程的地址空间 OpenFileMapping()//打开共享原创 2018-02-28 15:44:22 · 1093 阅读 · 0 评论 -
GetProcessMemoryInfo获取程序所占内存
To determine the efficiency of your application, you may want to examine its memory usage. The following sample code uses the GetProcessMemoryInfo function to obtain information about the memory us...原创 2019-07-31 20:50:40 · 4074 阅读 · 1 评论
分享