ReactOS 0.4.15-dev-7953-g1f49173
modemui.c File Reference
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
Include dependency graph for modemui.c:

Go to the source code of this file.

Macros

#define WIN32_NO_STATUS
 

Functions

INT_PTR CALLBACK ModemCplDlgProc (IN HWND hwndDlg, IN UINT uMsg, IN WPARAM wParam, IN LPARAM lParam)
 
INT_PTR CALLBACK ModemPropPagesProvider (IN HWND hwndDlg, IN UINT uMsg, IN WPARAM wParam, IN LPARAM lParam)
 
BOOL WINAPI DllMain (IN HINSTANCE hinstDLL, IN DWORD dwReason, IN LPVOID lpvReserved)
 

Variables

static HINSTANCE hDllInstance
 

Macro Definition Documentation

◆ WIN32_NO_STATUS

#define WIN32_NO_STATUS

Definition at line 10 of file modemui.c.

Function Documentation

◆ DllMain()

BOOL WINAPI DllMain ( IN HINSTANCE  hinstDLL,
IN DWORD  dwReason,
IN LPVOID  lpvReserved 
)

@DllMain

Core routine of the Utility Manager's library.

Parameters
[in]hDllInstanceThe entry point instance of the library.
[in]fdwReasonThe reason argument to indicate the motive DllMain is being called.
[in]lpvReservedReserved.
Returns
Returns TRUE when main call initialization has succeeded, FALSE otherwise.

Definition at line 63 of file modemui.c.

66{
67 switch (dwReason)
68 {
70 hDllInstance = hinstDLL;
72 break;
73 }
74
75 return TRUE;
76}
DWORD dwReason
Definition: misc.cpp:154
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static HINSTANCE hDllInstance
Definition: modemui.c:18

◆ ModemCplDlgProc()

INT_PTR CALLBACK ModemCplDlgProc ( IN HWND  hwndDlg,
IN UINT  uMsg,
IN WPARAM  wParam,
IN LPARAM  lParam 
)

Definition at line 21 of file modemui.c.

25{
28
29 switch (uMsg)
30 {
31 case WM_INITDIALOG:
32 {
33
34 }
35 break;
36 }
37
38 return 0;
39}
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
#define WM_INITDIALOG
Definition: winuser.h:1739

◆ ModemPropPagesProvider()

INT_PTR CALLBACK ModemPropPagesProvider ( IN HWND  hwndDlg,
IN UINT  uMsg,
IN WPARAM  wParam,
IN LPARAM  lParam 
)

Definition at line 42 of file modemui.c.

46{
49
50 switch (uMsg)
51 {
52 case WM_INITDIALOG:
53 {
54
55 }
56 break;
57 }
58
59 return 0;
60}

Variable Documentation

◆ hDllInstance

HINSTANCE hDllInstance
static

Definition at line 18 of file modemui.c.

Referenced by DllMain().