检查指向函数类型的调用约定

时间:2011-01-29 11:08:39

标签: c++ visual-c++ calling-convention

如何在编译时检查函数指针是否具有__stdcall调用约定?

这样的东西
void foo() {}

static_assert(is_stdcall<decltype(&foo)>::value, "foo() must be stdcall");

或至少

must_be_stdcall<T>(); // compiler error or warning if not stdcall

1 个答案:

答案 0 :(得分:5)

MSVC拥有C4440 compiler warning

// library code

#pragma warning(push)
#pragma warning(error: 4440)
template<typename F> void must_be_stdcall(F*) { typedef F __stdcall* T; }
#pragma warning(pop)

// test code

void __stdcall stdcall_fn() {}
void __cdecl cdecl_fn() {}

int main()
{
    must_be_stdcall(&stdcall_fn); // OK
    must_be_stdcall(&cdecl_fn); // error
}

可能typedef decltype(foo) __stdcall* T;其中foo是一个函数(请注意,应该有foo,而不是&foo),但它不适用于静态成员功能