如何显式调用CRT启动函数

How to explicitly call CRT startup functions

有什么方法可以在我的代码中显式调用通常在 mainCRTStartup 函数中调用的函数?我对 initterminitterm_e 函数特别感兴趣。甚至认为我的程序与 crt 链接(它必须是,对吗?)我不能只调用 initterm - 我试图声明并调用但我得到了未定义的引用。

有什么办法吗?

_initterm, and _initterm_e(在 msdn 中注意 _initterm_e 声明错误 - 实际上它使用 _PIFV 类型)由不同的 CRT dll 导出。它也在 lib 文件中声明。这个功能的实现非常简单:

typedef void (__cdecl *_PVFV)();

void _initterm(const _PVFV *ppfn, const _PVFV *end)
{
    do 
    {
        if (_PVFV pfn = *++ppfn)
        {
            pfn();
        }
    } while (ppfn < end);
}

typedef int  (__cdecl *_PIFV)();

int _initterm_e(const _PIFV *ppfn, const _PIFV *end)
{
    do 
    {
        if (_PIFV pfn = *++ppfn)
        {
            if (int err = pfn()) return err;
        }
    } while (ppfn < end);

    return 0;
}

因此您可以导入它或使用自己的实现。 这里更快的问题 - 什么用作输入参数?

say c++CL 编译器如何最小化)使用 ( ".CRT$XCA", ".CRT$XCZ" ) 部分来放置 c++ 全局初始化。所以我们可以做下一步:

extern "C"
{
#pragma const_seg(".CRT$XCA")
  const _PVFV __xc_a = 0;
#pragma const_seg(".CRT$XCZ")
  const _PVFV __xc_z = 0;

#pragma const_seg(".CRT$XIA")
  const _PVFV __xi_a = 0;
#pragma const_seg(".CRT$XIZ")
  const _PVFV __xi_z = 0;
}

    /*
     * do initializations
     */
    initret = _initterm_e( &__xi_a, &__xi_z );
    if ( initret != 0 )
        return initret;

    /*
     * do C++ initializations
     */
    _initterm( &__xc_a, &__xc_z );

但这里需要很好地理解 - 我们在做什么以及为什么做