Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenextra.c
Go to the documentation of this file.
00001 /* $Id$ 00002 * 00003 * COPYRIGHT: See COPYING in the top level directory 00004 * PROJECT: ReactOS User Manager Control Panel 00005 * FILE: dll/cpl/usrmgr/extra.c 00006 * PURPOSE: Extra property page 00007 * 00008 * PROGRAMMERS: Eric Kohl 00009 */ 00010 00011 #include "usrmgr.h" 00012 00013 INT_PTR CALLBACK 00014 ExtraPageProc(HWND hwndDlg, 00015 UINT uMsg, 00016 WPARAM wParam, 00017 LPARAM lParam) 00018 { 00019 UNREFERENCED_PARAMETER(lParam); 00020 UNREFERENCED_PARAMETER(wParam); 00021 UNREFERENCED_PARAMETER(hwndDlg); 00022 00023 switch (uMsg) 00024 { 00025 case WM_INITDIALOG: 00026 break; 00027 00028 case WM_COMMAND: 00029 break; 00030 } 00031 00032 return FALSE; 00033 } Generated on Sun May 27 2012 04:19:36 for ReactOS by
1.7.6.1
|