WM_NCHITTESTの返り値。 In a window currently covered by another window in the same thread (the message will be sent to underlying windows in the same thread until one of them returns a code that is not HTTRANSPARENT) だそうだ。
--A.h-- #include "B.h" class A{ ... B testB; }; ------ --B.h-- #include "C.h" class B{... C testC }; ------ --C.h-- #include "A.h" class C{... A testA }; ------