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