/************** This file holds the child window procedure. It will bild the child windows that will each display tree members. __________________ |A|B|C|So on... __________________ **************/ // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ // ++++++++++++++++++ BEGIN ChildWndProc PROCEDURE +++++++++++++++++++++++++++ #include "WinTree.h" // WinTree1.h is 'ifndef' so wont be multipled defind LRESULT CALLBACK ChildWndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { return DefWindowProc (hwnd, message, wParam, lParam) ; } // End ChildWndProc ... // -------------------- END ChildWndProc PROCEDURE --------------------------- // ---------------------------------------------------------------------------