ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

rasman.c
Go to the documentation of this file.
00001 /*
00002  * RASMAN
00003  *
00004  * Copyright 2007 ReactOS Team
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 <rasshost.h>
00027 
00028 static HINSTANCE hDllInstance;
00029 
00030 WINE_DEFAULT_DEBUG_CHANNEL(rasman);
00031 
00032 VOID WINAPI
00033 RasSecurityDialogComplete(SECURITY_MESSAGE* pSecMsg)
00034 {
00035     FIXME("(%p),stub!\n",pSecMsg);
00036 }
00037 
00038 DWORD WINAPI
00039 RasSecurityDialogBegin(HPORT hPort, PBYTE pSendBuf,
00040     DWORD SendBufSize, PBYTE pRecvBuf, DWORD RecvBufSize,
00041     VOID (WINAPI *RasSecurityDialogComplete)(SECURITY_MESSAGE*))
00042 {
00043     FIXME("(%p,%p,0x%08x,%p,0x%08x,%p),stub!\n",hPort,pSendBuf,SendBufSize,
00044           pRecvBuf,RecvBufSize,*RasSecurityDialogComplete);
00045     return NO_ERROR;
00046 }
00047 
00048 DWORD WINAPI
00049 RasSecurityDialogSend(HPORT hPort, PBYTE pBuffer, WORD BufferLength)
00050 {
00051     FIXME("(%p,%p,%x),stub!\n",hPort, pBuffer, BufferLength);
00052     return NO_ERROR;
00053 }
00054 
00055 DWORD WINAPI
00056 RasSecurityDialogReceive(HPORT hPort, PBYTE pBuffer, PWORD pBufferLength, DWORD Timeout, HANDLE hEvent)
00057 {
00058     FIXME("(%p,%p,%p,%x,%p),stub!\n",hPort, pBuffer, pBufferLength, Timeout, hEvent);
00059     return NO_ERROR;
00060 }
00061 
00062 DWORD WINAPI
00063 RasSecurityDialogEnd(HPORT hPort)
00064 {
00065     FIXME("(%p),stub!\n",hPort);
00066     return NO_ERROR;
00067 }
00068 
00069 DWORD WINAPI
00070 RasSecurityDialogGetInfo(HPORT hPort, RAS_SECURITY_INFO* pBuffer)
00071 {
00072     FIXME("(%p,%p),stub!\n",hPort,pBuffer);
00073     return NO_ERROR;
00074 }
00075 
00076 BOOL WINAPI
00077 DllMain(IN HINSTANCE hinstDLL,
00078         IN DWORD dwReason,
00079         IN LPVOID lpvReserved)
00080 {
00081     switch (dwReason)
00082     {
00083         case DLL_PROCESS_ATTACH:
00084             hDllInstance = hinstDLL;
00085             DisableThreadLibraryCalls(hinstDLL);
00086             break;
00087     }
00088 
00089     return TRUE;
00090 }
00091 

Generated on Sat May 26 2012 04:24:29 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.