[USRMGR]
[reactos.git] / reactos / dll / cpl / usrmgr / extra.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS User Manager Control Panel
5 * FILE: dll/cpl/usrmgr/extra.c
6 * PURPOSE: Extra property page
7 *
8 * PROGRAMMERS: Eric Kohl
9 */
10
11 #include "usrmgr.h"
12
13 INT_PTR CALLBACK
14 ExtraPageProc(HWND hwndDlg,
15 UINT uMsg,
16 WPARAM wParam,
17 LPARAM lParam)
18 {
19 UNREFERENCED_PARAMETER(lParam);
20 UNREFERENCED_PARAMETER(wParam);
21 UNREFERENCED_PARAMETER(hwndDlg);
22
23 switch (uMsg)
24 {
25 case WM_INITDIALOG:
26 break;
27
28 case WM_COMMAND:
29 break;
30 }
31
32 return FALSE;
33 }