Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenrasdlg.c
Go to the documentation of this file.
00001 /* 00002 * RASDLG 00003 * 00004 * Copyright 2007 Dmitry Chapyshev 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #include <stdarg.h> 00022 00023 #include <windows.h> 00024 #include <ras.h> 00025 #include "wine/debug.h" 00026 #include <rasdlg.h> 00027 00028 WINE_DEFAULT_DEBUG_CHANNEL(ras); 00029 00030 BOOL WINAPI 00031 RasDialDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPSTR lpszPhoneNumber, LPRASDIALDLG lpInfo) 00032 { 00033 FIXME("(%s,%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpszPhoneNumber,lpInfo); 00034 return 0; 00035 } 00036 00037 BOOL WINAPI 00038 RasDialDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPWSTR lpszPhoneNumber, LPRASDIALDLG lpInfo) 00039 { 00040 FIXME("(%s,%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpszPhoneNumber,lpInfo); 00041 return 0; 00042 } 00043 00044 BOOL WINAPI 00045 RasMonitorDlgA(LPSTR lpszDeviceName, LPRASMONITORDLG lpInfo) 00046 { 00047 FIXME("(%s,%p),stub!\n",lpszDeviceName,lpInfo); 00048 return 0; 00049 } 00050 00051 BOOL WINAPI 00052 RasMonitorDlgW(LPWSTR lpszDeviceName, LPRASMONITORDLG lpInfo) 00053 { 00054 FIXME("(%s,%p),stub!\n",lpszDeviceName,lpInfo); 00055 return 0; 00056 } 00057 00058 BOOL WINAPI 00059 RasEntryDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASENTRYDLGA lpInfo) 00060 { 00061 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo); 00062 return 0; 00063 } 00064 00065 BOOL WINAPI 00066 RasEntryDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASENTRYDLGW lpInfo) 00067 { 00068 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo); 00069 return 0; 00070 } 00071 00072 BOOL WINAPI 00073 RasPhonebookDlgA(LPSTR lpszPhonebook, LPSTR lpszEntry, LPRASPBDLGA lpInfo) 00074 { 00075 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo); 00076 return 0; 00077 } 00078 00079 BOOL WINAPI 00080 RasPhonebookDlgW(LPWSTR lpszPhonebook, LPWSTR lpszEntry, LPRASPBDLGW lpInfo) 00081 { 00082 FIXME("(%s,%s,%p),stub!\n",lpszPhonebook,lpszEntry,lpInfo); 00083 return 0; 00084 } 00085 00086 static HINSTANCE hDllInstance; 00087 00088 BOOL WINAPI 00089 DllMain(IN HINSTANCE hinstDLL, 00090 IN DWORD dwReason, 00091 IN LPVOID lpvReserved) 00092 { 00093 switch (dwReason) 00094 { 00095 case DLL_PROCESS_ATTACH: 00096 hDllInstance = hinstDLL; 00097 DisableThreadLibraryCalls(hinstDLL); 00098 break; 00099 } 00100 00101 return TRUE; 00102 } 00103 Generated on Sat May 26 2012 04:24:29 for ReactOS by
1.7.6.1
|