我无法创建自己的函数 CreateWindow,因为 win32 标头中已经定义了一个。只是我什至不能在我自己的命名空间中这样做。真正的问题是什么?
MyNamespace::MyOwnWindowClass * Bit::CreateWindow( )
{
// Code here.
}
得到错误,例如:
Error 5 error C2447: '{' : missing function header (old-style formal list?)
Error 2 error C2039: 'CreateWindowExW' : is not a member of 'MyNamespace'