Is there a way to wrap WndProc as private member?
If I have this:
class Window { public: Window(); virtual ~Window(); void create(); private
Yes, it is possible to include a WndProc as a class member. Furthermore, you can modify other class members from it. The trick is to use two WndProc functions, one of them static.