ReactOS 0.4.15-dev-7958-gcd0bb1a
modemui.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Modem Properties
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: dll/win32/modemui/modemui.c
5 * PURPOSE: Modem Properties
6 * COPYRIGHT: Copyright Dmitry Chapyshev <lentind@yandex.ru>
7 *
8 */
9
10#define WIN32_NO_STATUS
11#include <stdarg.h>
12#include <windef.h>
13#include <winbase.h>
14#include <winuser.h>
15
16//#include "resource.h"
17
19
22 IN UINT uMsg,
25{
28
29 switch (uMsg)
30 {
31 case WM_INITDIALOG:
32 {
33
34 }
35 break;
36 }
37
38 return 0;
39}
40
43 IN UINT uMsg,
46{
49
50 switch (uMsg)
51 {
52 case WM_INITDIALOG:
53 {
54
55 }
56 break;
57 }
58
59 return 0;
60}
61
66{
67 switch (dwReason)
68 {
70 hDllInstance = hinstDLL;
72 break;
73 }
74
75 return TRUE;
76}
DWORD dwReason
Definition: misc.cpp:154
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define CALLBACK
Definition: compat.h:35
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
static IN DWORD IN LPVOID lpvReserved
INT_PTR CALLBACK ModemCplDlgProc(IN HWND hwndDlg, IN UINT uMsg, IN WPARAM wParam, IN LPARAM lParam)
Definition: modemui.c:21
BOOL WINAPI DllMain(IN HINSTANCE hinstDLL, IN DWORD dwReason, IN LPVOID lpvReserved)
Definition: modemui.c:63
INT_PTR CALLBACK ModemPropPagesProvider(IN HWND hwndDlg, IN UINT uMsg, IN WPARAM wParam, IN LPARAM lParam)
Definition: modemui.c:42
static HINSTANCE hDllInstance
Definition: modemui.c:18
unsigned int UINT
Definition: ndis.h:50
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
int32_t INT_PTR
Definition: typedefs.h:64
#define IN
Definition: typedefs.h:39
LONG_PTR LPARAM
Definition: windef.h:208
UINT_PTR WPARAM
Definition: windef.h:207
#define WINAPI
Definition: msvc.h:6
#define WM_INITDIALOG
Definition: winuser.h:1739