#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
Go to the source code of this file.
◆ WIN32_NO_STATUS
◆ DllMain()
@DllMain
Core routine of the Utility Manager's library.
- Parameters
-
[in] | hDllInstance | The entry point instance of the library. |
[in] | fdwReason | The reason argument to indicate the motive DllMain is being called. |
[in] | lpvReserved | Reserved. |
- Returns
- Returns TRUE when main call initialization has succeeded, FALSE otherwise.
Definition at line 63 of file modemui.c.
66{
68 {
72 break;
73 }
74
76}
#define DLL_PROCESS_ATTACH
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
static HINSTANCE hDllInstance
◆ ModemCplDlgProc()
Definition at line 21 of file modemui.c.
25{
28
29 switch (uMsg)
30 {
32 {
33
34 }
35 break;
36 }
37
38 return 0;
39}
#define UNREFERENCED_PARAMETER(P)
◆ ModemPropPagesProvider()
Definition at line 42 of file modemui.c.
46{
49
50 switch (uMsg)
51 {
53 {
54
55 }
56 break;
57 }
58
59 return 0;
60}
◆ hDllInstance