__stdcall typedef g++ problem
This code compiles (as I would expect):
typedef void __stdcall (*Func)();
struct A {
static void __stdcall f() { }
};
int main() {
Func p = A::f;
}
But this one:
struct A {
typedef void __stdcall (*Func)();
static void __stdcall f() { }
};
int main() {
A::Func p = A::f;
}
fails with not-very-helpful error mess开发者_如何学Goage:
error: invalid conversion from `void (*)()' to `void (*)()'
I'm using g++ 3.4.2 under Vista (I know, it's ancient, but I don't have access to any other environment right now). Obviously I am missing something here. Any help would be appreciated.
The syntax is void(__stdcall *)()
, not void __stdcall (*)()
.
精彩评论