reactos/dll/cpl/usrmgr/extra.c
Amine Khaldi c424146e2c Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
2010-07-24 18:52:44 +00:00

34 lines
650 B
C

/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS User Manager Control Panel
* FILE: dll/cpl/usrmgr/extra.c
* PURPOSE: Extra property page
*
* PROGRAMMERS: Eric Kohl
*/
#include "usrmgr.h"
INT_PTR CALLBACK
ExtraPageProc(HWND hwndDlg,
UINT uMsg,
WPARAM wParam,
LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
UNREFERENCED_PARAMETER(wParam);
UNREFERENCED_PARAMETER(hwndDlg);
switch (uMsg)
{
case WM_INITDIALOG:
break;
case WM_COMMAND:
break;
}
return FALSE;
}