为什么的CWnd :: CreateEx未能创建我的窗口?(Why is CWnd::CreateE

2019-10-17 09:39发布

我的工作,这是我们32位MFC应用程序VC2010内发生零星的生产问题。 该应用程序在Windows Server 2008 R2的SP1标准64位运行。

该问题是由未能创建一个CWnd派生类引起的。 当失败发生AfxUnhookWindowCreate方法返回的CWnd :: CreateEx内假。 这是因为pThreadState-> m_pWndInit变量不是NULL。 它看起来像_AfxCbtFilterHook应该这样HCBT_CREATEWND时钩住被设置为NULL,但现在看来,这是不存在的。 我已经退出了CREATESTRUCT相比它时,对未发生发生故障和参数基本相同。

任何人都不会有什么可能导致此想法或我怎么能查明原因? 谢谢!

BOOL CWnd::CreateEx(DWORD dwExStyle, LPCTSTR lpszClassName,
LPCTSTR lpszWindowName, DWORD dwStyle,
int x, int y, int nWidth, int nHeight,
HWND hWndParent, HMENU nIDorHMenu, LPVOID lpParam)
{
...
if (!PreCreateWindow(cs))
{
    PostNcDestroy();
    return FALSE;
}

AfxHookWindowCreate(this);
HWND hWnd = ::AfxCtxCreateWindowEx(cs.dwExStyle, cs.lpszClass,
        cs.lpszName, cs.style, cs.x, cs.y, cs.cx, cs.cy,
        cs.hwndParent, cs.hMenu, cs.hInstance, cs.lpCreateParams);
...
if (!AfxUnhookWindowCreate())
    PostNcDestroy();        // cleanup if CreateWindowEx fails too soon
...

BOOL AFXAPI AfxUnhookWindowCreate()
{
_AFX_THREAD_STATE* pThreadState = _afxThreadState.GetData();
  #ifndef _AFXDLL
if (afxContextIsDLL && pThreadState->m_hHookOldCbtFilter != NULL)
{
    ::UnhookWindowsHookEx(pThreadState->m_hHookOldCbtFilter);
    pThreadState->m_hHookOldCbtFilter = NULL;
}
  #endif
if (pThreadState->m_pWndInit != NULL)
{
    pThreadState->m_pWndInit = NULL;
    return FALSE;   // was not successfully hooked
}
return TRUE;
}

LRESULT CALLBACK
_AfxCbtFilterHook(int code, WPARAM wParam, LPARAM lParam)
{
_AFX_THREAD_STATE* pThreadState = _afxThreadState.GetData();
if (code != HCBT_CREATEWND)
{
    // wait for HCBT_CREATEWND just pass others on...
    return CallNextHookEx(pThreadState->m_hHookOldCbtFilter, code,
        wParam, lParam);
}

 ...
        pThreadState->m_pWndInit = NULL;

Answer 1:

我跟踪这个问题到是不应该在这个时候执行的窗口过程挂钩。



文章来源: Why is CWnd::CreateEx failing to create my window?