reactos/dll/win32/modemui/modemui.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

72 lines
1.3 KiB
C

/*
* PROJECT: ReactOS Modem Properties
* LICENSE: GPL - See COPYING in the top level directory
* FILE: dll/win32/modemui/modemui.c
* PURPOSE: Modem Properties
* COPYRIGHT: Copyright Dmitry Chapyshev <lentind@yandex.ru>
*
*/
#include <windows.h>
#include "resource.h"
static HINSTANCE hDllInstance;
INT_PTR CALLBACK
ModemCplDlgProc(IN HWND hwndDlg,
IN UINT uMsg,
IN WPARAM wParam,
IN LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
UNREFERENCED_PARAMETER(wParam);
switch (uMsg)
{
case WM_INITDIALOG:
{
}
break;
}
return 0;
}
INT_PTR CALLBACK
ModemPropPagesProvider(IN HWND hwndDlg,
IN UINT uMsg,
IN WPARAM wParam,
IN LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
UNREFERENCED_PARAMETER(wParam);
switch (uMsg)
{
case WM_INITDIALOG:
{
}
break;
}
return 0;
}
BOOL WINAPI
DllMain(IN HINSTANCE hinstDLL,
IN DWORD dwReason,
IN LPVOID lpvReserved)
{
switch (dwReason)
{
case DLL_PROCESS_ATTACH:
hDllInstance = hinstDLL;
DisableThreadLibraryCalls(hinstDLL);
break;
}
return TRUE;
}