I want HWND object to be converted to my user defined object..may i know how can i archive this?
Below is my sample code :
File1.cpp { XYZ(*this); }
File2.cpp { XYZ(HWND hwnd) { // Here i want to access instance of File1.So can i type cast the HWND object } }
}