AfxGetApp 返回 NULL

发布于 2024-10-20 00:37:02 字数 145 浏览 4 评论 0原文

我的应用程序对 AfxGetApp() 的任何调用都会返回 NULL,有人可以帮忙吗?

它是从.dll项目转换而来的.exe项目,因此可能缺少一些项目配置。我已从使用 .exe 向导创建的另一个项目复制了配置,但不起作用。另外,我有一个全局的 CWinApp。

Any call on my application to AfxGetApp() returns NULL, can anyone help?

It is a .exe project converted from a .dll project, so there may be some project configurations that I am missing. I have copied configurations from another project created with the .exe wizard but is does not work. Also, I have a CWinApp that is global.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

公布 2024-10-27 00:37:02

检查您的预处理器定义。删除 _AFXEXT。

Check your preprocessor definitions. Remove _AFXEXT.

扶醉桌前 2024-10-27 00:37:02

我在构建 dll 时遇到了类似的问题,如果我复制此代码(从另一个 dll 获取),AfxGetApp() 将返回正确的指针:

CWinApp theApp;

using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    int nRetCode = 0;

    // initialize MFC and print and error on failure
    if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
    {
       // TODO: change error code to suit your needs
       _tprintf(_T("Fatal Error: MFC initialization failed\n"));
       nRetCode = 1;
    }
    else
    {
       // TODO: code your application's behavior here.
    }

    return nRetCode;
}

I had a similar problem building a dll, if I copy this code (taken from another dll) AfxGetApp() returns the correct pointer:

CWinApp theApp;

using namespace std;

int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
    int nRetCode = 0;

    // initialize MFC and print and error on failure
    if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
    {
       // TODO: change error code to suit your needs
       _tprintf(_T("Fatal Error: MFC initialization failed\n"));
       nRetCode = 1;
    }
    else
    {
       // TODO: code your application's behavior here.
    }

    return nRetCode;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文