来自《Windows核心编程》
来自《Windows核心编程》
创建自定义段并设置属性
#include "stdafx.h"
#include "MFCApplication1.h"
#include "MFCApplication1Dlg.h"
//创建自定义段
#pragma data_seg("MyShare")
volatile long g_nAppInstCount = 0;
#pragma data_seg()
//设置段的属性:RWS, 可读、可写、可共享
#pragma comment(linker, "/SECTION:MyShare,RWS")
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
//....
访问共享实例
// CMFCApplication1App 初始化
BOOL CMFCApplication1App::InitInstance()
{
//
//略
//
CWinApp::InitInstance();
//g_nAppInstCount加一
InterlockedExchangeAdd(&g_nAppInstCount, 1);
//
//略
//
//弹框显示实例数
CString strMsg;
strMsg.Format(_T("已运行实例个数%ld"), g_nAppInstCount);
AfxMessageBox(strMsg);
CMFCApplication1Dlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
//
//略
//
//g_nAppInstCount减一
InterlockedExchangeAdd(&g_nAppInstCount, -1);
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
实例崩溃时,g_nAppInstCount不会减1,但所有实例都终止后,再运行,g_nAppInstCount会重置
dumpbin.exe查看生成的exe