Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenbrowsr.c
Go to the documentation of this file.
00001 /* 00002 * Copyright 2002 Andriy Palamarchuk 00003 * 00004 * netapi32 browser functions 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 "windef.h" 00024 #include "winbase.h" 00025 #include "winerror.h" 00026 #include "lmcons.h" 00027 #include "lmbrowsr.h" 00028 #include "lmshare.h" 00029 00030 /************************************************************ 00031 * I_BrowserSetNetlogonState (NETAPI32.@) 00032 */ 00033 NET_API_STATUS WINAPI I_BrowserSetNetlogonState( 00034 LPWSTR ServerName, LPWSTR DomainName, LPWSTR EmulatedServerName, 00035 DWORD Role) 00036 { 00037 return ERROR_NOT_SUPPORTED; 00038 } 00039 00040 /************************************************************ 00041 * I_BrowserQueryEmulatedDomains (NETAPI32.@) 00042 */ 00043 NET_API_STATUS WINAPI I_BrowserQueryEmulatedDomains( 00044 LPWSTR ServerName, PBROWSER_EMULATED_DOMAIN *EmulatedDomains, 00045 LPDWORD EntriesRead) 00046 { 00047 return ERROR_NOT_SUPPORTED; 00048 } Generated on Sat May 26 2012 04:23:58 for ReactOS by
1.7.6.1
|