xref: /reactos/dll/win32/modemui/modemui.c (revision 886670e9)
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 
18 static HINSTANCE hDllInstance;
19 
20 INT_PTR CALLBACK
21 ModemCplDlgProc(IN HWND hwndDlg,
22 		        IN UINT uMsg,
23                 IN WPARAM wParam,
24                 IN LPARAM lParam)
25 {
26     UNREFERENCED_PARAMETER(lParam);
27     UNREFERENCED_PARAMETER(wParam);
28 
29     switch (uMsg)
30     {
31         case WM_INITDIALOG:
32         {
33 
34         }
35 		break;
36     }
37 
38     return 0;
39 }
40 
41 INT_PTR CALLBACK
42 ModemPropPagesProvider(IN HWND hwndDlg,
43 		               IN UINT uMsg,
44                        IN WPARAM wParam,
45                        IN LPARAM lParam)
46 {
47     UNREFERENCED_PARAMETER(lParam);
48     UNREFERENCED_PARAMETER(wParam);
49 
50     switch (uMsg)
51     {
52         case WM_INITDIALOG:
53         {
54 
55         }
56 		break;
57     }
58 
59     return 0;
60 }
61 
62 BOOL WINAPI
63 DllMain(IN HINSTANCE hinstDLL,
64         IN DWORD dwReason,
65         IN LPVOID lpvReserved)
66 {
67     switch (dwReason)
68     {
69         case DLL_PROCESS_ATTACH:
70             hDllInstance = hinstDLL;
71             DisableThreadLibraryCalls(hinstDLL);
72             break;
73     }
74 
75     return TRUE;
76 }
77