Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmodemui.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Modem Properties 00003 * LICENSE: GPL - See COPYING in the top level directory 00004 * FILE: dll/win32/modemui/modemui.c 00005 * PURPOSE: Modem Properties 00006 * COPYRIGHT: Copyright Dmitry Chapyshev <lentind@yandex.ru> 00007 * 00008 */ 00009 00010 #include <windows.h> 00011 #include "resource.h" 00012 00013 static HINSTANCE hDllInstance; 00014 00015 INT_PTR CALLBACK 00016 ModemCplDlgProc(IN HWND hwndDlg, 00017 IN UINT uMsg, 00018 IN WPARAM wParam, 00019 IN LPARAM lParam) 00020 { 00021 UNREFERENCED_PARAMETER(lParam); 00022 UNREFERENCED_PARAMETER(wParam); 00023 00024 switch (uMsg) 00025 { 00026 case WM_INITDIALOG: 00027 { 00028 00029 } 00030 break; 00031 } 00032 00033 return 0; 00034 } 00035 00036 INT_PTR CALLBACK 00037 ModemPropPagesProvider(IN HWND hwndDlg, 00038 IN UINT uMsg, 00039 IN WPARAM wParam, 00040 IN LPARAM lParam) 00041 { 00042 UNREFERENCED_PARAMETER(lParam); 00043 UNREFERENCED_PARAMETER(wParam); 00044 00045 switch (uMsg) 00046 { 00047 case WM_INITDIALOG: 00048 { 00049 00050 } 00051 break; 00052 } 00053 00054 return 0; 00055 } 00056 00057 BOOL WINAPI 00058 DllMain(IN HINSTANCE hinstDLL, 00059 IN DWORD dwReason, 00060 IN LPVOID lpvReserved) 00061 { 00062 switch (dwReason) 00063 { 00064 case DLL_PROCESS_ATTACH: 00065 hDllInstance = hinstDLL; 00066 DisableThreadLibraryCalls(hinstDLL); 00067 break; 00068 } 00069 00070 return TRUE; 00071 } Generated on Sat May 26 2012 04:23:16 for ReactOS by
1.7.6.1
|