mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[NETAPI32]
Add obsolete NetRepl functions. svn path=/trunk/; revision=75042
This commit is contained in:
parent
272bc3ef9f
commit
248545d219
2 changed files with 193 additions and 16 deletions
|
@ -186,21 +186,21 @@
|
|||
@ stdcall NetRemoteTOD(wstr ptr)
|
||||
@ stdcall NetRemoveAlternateComputerName(wstr wstr wstr wstr long)
|
||||
@ stdcall NetRenameMachineInDomain(wstr wstr wstr wstr long)
|
||||
@ stub NetReplExportDirAdd
|
||||
@ stub NetReplExportDirDel
|
||||
@ stub NetReplExportDirEnum
|
||||
@ stub NetReplExportDirGetInfo
|
||||
@ stub NetReplExportDirLock
|
||||
@ stub NetReplExportDirSetInfo
|
||||
@ stub NetReplExportDirUnlock
|
||||
@ stub NetReplGetInfo
|
||||
@ stub NetReplImportDirAdd
|
||||
@ stub NetReplImportDirDel
|
||||
@ stub NetReplImportDirEnum
|
||||
@ stub NetReplImportDirGetInfo
|
||||
@ stub NetReplImportDirLock
|
||||
@ stub NetReplImportDirUnlock
|
||||
@ stub NetReplSetInfo
|
||||
@ stdcall NetReplExportDirAdd(wstr long ptr ptr)
|
||||
@ stdcall NetReplExportDirDel(wstr wstr)
|
||||
@ stdcall NetReplExportDirEnum(wstr long ptr long ptr ptr ptr)
|
||||
@ stdcall NetReplExportDirGetInfo(wstr wstr long ptr)
|
||||
@ stdcall NetReplExportDirLock(wstr wstr)
|
||||
@ stdcall NetReplExportDirSetInfo(wstr wstr long ptr ptr)
|
||||
@ stdcall NetReplExportDirUnlock(wstr wstr long)
|
||||
@ stdcall NetReplGetInfo(wstr long ptr)
|
||||
@ stdcall NetReplImportDirAdd(wstr long ptr ptr)
|
||||
@ stdcall NetReplImportDirDel(wstr wstr)
|
||||
@ stdcall NetReplImportDirEnum(wstr long ptr long ptr ptr ptr)
|
||||
@ stdcall NetReplImportDirGetInfo(wstr wstr long ptr)
|
||||
@ stdcall NetReplImportDirLock(wstr wstr)
|
||||
@ stdcall NetReplImportDirUnlock(wstr wstr long)
|
||||
@ stdcall NetReplSetInfo(wstr long ptr ptr)
|
||||
@ stdcall NetScheduleJobAdd(wstr ptr ptr)
|
||||
@ stdcall NetScheduleJobDel(wstr long long)
|
||||
@ stdcall NetScheduleJobEnum(wstr ptr long ptr ptr ptr)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* PROJECT: NetAPI DLL
|
||||
* FILE: dll/win32/netapi32/obsolete.c
|
||||
* PURPOSE: Obsolete functions
|
||||
* PROGRAMMERS: Eric Kohl <eric.kohl@reactos.org>
|
||||
* PROGRAMMERS: Eric Kohl (eric.kohl@reactos.org)
|
||||
*/
|
||||
|
||||
/* INCLUDES ******************************************************************/
|
||||
|
@ -14,6 +14,7 @@
|
|||
#include <lmconfig.h>
|
||||
#include <lmerrlog.h>
|
||||
#include <lmmsg.h>
|
||||
#include <lmrepl.h>
|
||||
#include <lmsvc.h>
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
||||
|
@ -230,6 +231,182 @@ NetMessageNameGetInfo(
|
|||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirAdd(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_In_ const LPBYTE buf,
|
||||
_Out_opt_ LPDWORD parm_err)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirDel(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirEnum(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_Out_ LPBYTE *bufptr,
|
||||
_In_ DWORD prefmaxlen,
|
||||
_Out_ LPDWORD entriesread,
|
||||
_Out_ LPDWORD totalentries,
|
||||
_Inout_opt_ LPDWORD resumehandle)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirGetInfo(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname,
|
||||
_In_ DWORD level,
|
||||
_Out_ LPBYTE *bufptr)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirLock(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirSetInfo(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname,
|
||||
_In_ DWORD level,
|
||||
_In_ const LPBYTE buf,
|
||||
_Out_opt_ LPDWORD parm_err)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplExportDirUnlock(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname,
|
||||
_In_ DWORD unlockforce)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplGetInfo(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_Out_ LPBYTE *bufptr)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirAdd(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_In_ const LPBYTE buf,
|
||||
_Out_opt_ LPDWORD parm_err)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirDel(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirEnum(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_Out_ LPBYTE *bufptr,
|
||||
_In_ DWORD prefmaxlen,
|
||||
_Out_ LPDWORD entriesread,
|
||||
_Out_ LPDWORD totalentries,
|
||||
_Inout_opt_ LPDWORD resumehandle)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirGetInfo(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname,
|
||||
_In_ DWORD level,
|
||||
_Out_ LPBYTE *bufptr)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirLock(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplImportDirUnlock(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ LPCWSTR dirname,
|
||||
_In_ DWORD unlockforce)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetReplSetInfo(
|
||||
_In_opt_ LPCWSTR servername,
|
||||
_In_ DWORD level,
|
||||
_In_ const LPBYTE buf,
|
||||
_Out_opt_ LPDWORD parm_err)
|
||||
{
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
|
||||
NET_API_STATUS
|
||||
WINAPI
|
||||
NetServiceControl(
|
||||
|
|
Loading…
Reference in a new issue