//----------------------------- FUNCTION -------------------------------------*
void
    CWindowPlacement::Save(LPCTSTR pszKeyName, CWnd* pWnd)
/*>>>> 
Save window placement in app profile

Result
  void
<<<<*/
{
    pWnd->GetWindowPlacement(this);
    WriteProfileWP(pszKeyName);
}
Exemple #2
0
////////////////
// Save window placement in app profile
void CWindowPlacement::Save(LPCTSTR lpKeyName, CWnd* pWnd)
{
   pWnd->GetWindowPlacement(this);
   WriteProfileWP(lpKeyName);
}