ReactOS 0.4.15-dev-7842-g558ab78
rasdlg.c
Go to the documentation of this file.
1/*
2 * RASDLG
3 *
4 * Copyright 2007 Dmitry Chapyshev
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#define WIN32_NO_STATUS
22
23#include <stdarg.h>
24
25#include <windef.h>
26#include <winbase.h>
27//#include <ras.h>
28#include <wine/debug.h>
29#include <rasdlg.h>
30
32
34RasDialDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPSTR lpszPhoneNumber, LPRASDIALDLG lpInfo)
35{
36 FIXME("(%s,%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpszPhoneNumber,lpInfo);
37 return 0;
38}
39
41RasDialDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPWSTR lpszPhoneNumber, LPRASDIALDLG lpInfo)
42{
43 FIXME("(%s,%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpszPhoneNumber,lpInfo);
44 return 0;
45}
46
48RasMonitorDlgA(LPSTR lpszDeviceName, LPRASMONITORDLG lpInfo)
49{
50 FIXME("(%s,%p),stub!\n",lpszDeviceName,lpInfo);
51 return 0;
52}
53
55RasMonitorDlgW(LPWSTR lpszDeviceName, LPRASMONITORDLG lpInfo)
56{
57 FIXME("(%s,%p),stub!\n",lpszDeviceName,lpInfo);
58 return 0;
59}
60
62RasEntryDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASENTRYDLGA lpInfo)
63{
64 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo);
65 return 0;
66}
67
69RasEntryDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASENTRYDLGW lpInfo)
70{
71 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo);
72 return 0;
73}
74
76RasPhonebookDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASPBDLGA lpInfo)
77{
78 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo);
79 return 0;
80}
81
83RasPhonebookDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASPBDLGW lpInfo)
84{
85 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo);
86 return 0;
87}
88
90
95{
96 switch (dwReason)
97 {
99 hDllInstance = hinstDLL;
101 break;
102 }
103
104 return TRUE;
105}
106
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
DWORD dwReason
Definition: misc.cpp:154
#define FIXME(fmt,...)
Definition: debug.h:111
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
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
#define ras
Definition: ftraster.c:561
static IN DWORD IN LPVOID lpvReserved
BOOL WINAPI RasDialDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPWSTR lpszPhoneNumber, LPRASDIALDLG lpInfo)
Definition: rasdlg.c:41
BOOL WINAPI RasEntryDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASENTRYDLGW lpInfo)
Definition: rasdlg.c:69
BOOL WINAPI RasEntryDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASENTRYDLGA lpInfo)
Definition: rasdlg.c:62
BOOL WINAPI RasMonitorDlgW(LPWSTR lpszDeviceName, LPRASMONITORDLG lpInfo)
Definition: rasdlg.c:55
BOOL WINAPI DllMain(IN HINSTANCE hinstDLL, IN DWORD dwReason, IN LPVOID lpvReserved)
Definition: rasdlg.c:92
BOOL WINAPI RasMonitorDlgA(LPSTR lpszDeviceName, LPRASMONITORDLG lpInfo)
Definition: rasdlg.c:48
BOOL WINAPI RasPhonebookDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASPBDLGW lpInfo)
Definition: rasdlg.c:83
BOOL WINAPI RasDialDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPSTR lpszPhoneNumber, LPRASDIALDLG lpInfo)
Definition: rasdlg.c:34
static HINSTANCE hDllInstance
Definition: rasdlg.c:89
BOOL WINAPI RasPhonebookDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASPBDLGA lpInfo)
Definition: rasdlg.c:76
#define IN
Definition: typedefs.h:39
#define WINAPI
Definition: msvc.h:6
char * LPSTR
Definition: xmlstorage.h:182
WCHAR * LPWSTR
Definition: xmlstorage.h:184