我想要一个使用 WinAPI 创建窗口的类。wndproc 函数应该是该类的方法。所以我找到了这样做的方法(见下面的代码),但不幸的是它不会用 VS2013 编译。
此代码使用 VS2010 编译,没有错误或警告。
在我的 .h 文件中:
typedef long(__stdcall* WNDPROC)(void*,unsigned int,unsigned int,long);
class LWindow
{
private:
//...
static LRESULT CALLBACK wndProc(HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam);
public:
LWindow(int width, int height, bool framed);
~LWindow();
//...
};
在我的 .cpp 文件中:
LWindow::LWindow(int width, int height, bool framed)
{
//...
WNDCLASS wc = {0};
wc.lpfnWndProc = wndProc;
//...
}
错误信息是
1>l:\opt\microsoft visual studio 12.0\vc\include\xrefwrap(283): error C2064: term does not evaluate to a function taking 0 arguments