#if 0
RECT rect = {0};
::GetWindowRect(::GetDesktopWindow(),&rect);
rect.left = rect.right - rect.left;
rect.left /= 2;
rect.top = rect.bottom - rect.top;
rect.top /= 2;
if( rect.left > 200)
{
rect.left -= 200;
}
if( rect.top > 150 )
{
rect.top -= 150;
}
rect.right = rect.left + 400;
rect.bottom = rect.top + 300;
CREATESTRUCT cs_TMain;