// WindowCreationData.h // // Revision Log // // Date Who SAR Notes // ========== === ======= ===================================== // (c) Reliable Software, 1997, 98 // Bartosz Milewski, www.relisoft.com // 2001-06-04 mph add namespace rfc (Reliable Foundation Class) #ifndef _CREATEDATA_H__ #define _CREATEDATA_H__ #include namespace rfc { class WindowCreationData: public CREATESTRUCT { public: void * GetCreationData() const { return lpCreateParams; } int GetHeight() const { return cy; } int GetWidth() const { return cx; } int GetX() const { return x; } int GetY() const { return y; } char const * GetWndName() const { return lpszName; } }; } #endif