如何在编译时检查函数指针是否具有__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
答案 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
),但它不适用于静态成员功能