【windows】进程间的数据

同个DLL间共享数据节:(不同进程间DLL共享)

#pragma data_seg(".Shared")
tThrState g_ThrState[65536] = ...{tThrState()};
#pragma data_seg()

#pragma comment(linker, "/Section:.Shared,RWS")

 

文件内存映射:

  

posted @ 2017-05-18 16:34  shinymood  阅读(245)  评论(0编辑  收藏  举报