member function pointers and inheritance

前端 未结 3 1314
南方客
南方客 2021-01-14 04:51

So i\'m working on a simple win32 wrapper for my own convenience, and i\'ve run into a slightly complicated problem.

this has alot of other members, but i\'m omittin

3条回答
  •  佛祖请我去吃肉
    2021-01-14 05:31

    Does something of this nature will work...? Ps. I'd used a typedef for the function signature.

    BasicWindow() 
        {
             InstallHandler(WM_CREATE, reinterpret_cast(&create));
        }
    

提交回复
热议问题