mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 09:36:16 +00:00
[NETAPI32]
Add obsolete NetAudit and NetConfig functions. svn path=/trunk/; revision=74957
This commit is contained in:
parent
658595fb98
commit
6d28124a20
2 changed files with 90 additions and 6 deletions
|
@ -106,13 +106,13 @@
|
||||||
@ stdcall NetApiBufferFree(ptr)
|
@ stdcall NetApiBufferFree(ptr)
|
||||||
@ stdcall NetApiBufferReallocate(ptr long ptr)
|
@ stdcall NetApiBufferReallocate(ptr long ptr)
|
||||||
@ stdcall NetApiBufferSize(ptr ptr)
|
@ stdcall NetApiBufferSize(ptr ptr)
|
||||||
@ stub NetAuditClear
|
@ stdcall NetAuditClear(wstr wstr wstr)
|
||||||
@ stub NetAuditRead
|
@ stdcall NetAuditRead(wstr wstr ptr long ptr long long ptr long ptr ptr)
|
||||||
@ stub NetAuditWrite
|
@ stdcall NetAuditWrite(long ptr long wstr ptr)
|
||||||
@ stub NetBrowserStatisticsGet
|
@ stub NetBrowserStatisticsGet
|
||||||
@ stub NetConfigGet
|
@ stdcall NetConfigGet(wstr wstr wstr ptr)
|
||||||
@ stub NetConfigGetAll
|
@ stdcall NetConfigGetAll(wstr wstr ptr)
|
||||||
@ stub NetConfigSet
|
@ stdcall NetConfigSet(wstr wstr wstr long long ptr long)
|
||||||
@ stub NetConnectionEnum
|
@ stub NetConnectionEnum
|
||||||
@ stub NetDfsAdd
|
@ stub NetDfsAdd
|
||||||
@ stub NetDfsAddFtRoot
|
@ stub NetDfsAddFtRoot
|
||||||
|
|
|
@ -9,6 +9,9 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "netapi32.h"
|
#include "netapi32.h"
|
||||||
|
#include <lmalert.h>
|
||||||
|
#include <lmaudit.h>
|
||||||
|
#include <lmconfig.h>
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
|
||||||
|
|
||||||
|
@ -37,6 +40,87 @@ NetAlertRaiseEx(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetAuditClear(
|
||||||
|
_In_opt_ LPCWSTR server,
|
||||||
|
_In_opt_ LPCWSTR backupfile,
|
||||||
|
_In_opt_ LPCWSTR service)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetAuditRead(
|
||||||
|
_In_opt_ LPCWSTR server,
|
||||||
|
_In_opt_ LPCWSTR service,
|
||||||
|
_In_ LPHLOG auditloghandle,
|
||||||
|
_In_ DWORD offset,
|
||||||
|
_In_opt_ LPDWORD reserved1,
|
||||||
|
_In_ DWORD reserved2,
|
||||||
|
_In_ DWORD offsetflag,
|
||||||
|
_Out_ LPBYTE *bufptr,
|
||||||
|
_In_ DWORD prefmaxlen,
|
||||||
|
_Out_ LPDWORD bytesread,
|
||||||
|
_Out_ LPDWORD totalavailable)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetAuditWrite(
|
||||||
|
_In_ DWORD type,
|
||||||
|
_In_ LPBYTE buf,
|
||||||
|
_In_ DWORD numbytes,
|
||||||
|
_In_opt_ LPCWSTR service,
|
||||||
|
_In_opt_ LPBYTE reserved)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetConfigGet(
|
||||||
|
_In_opt_ LPCWSTR server,
|
||||||
|
_In_ LPCWSTR component,
|
||||||
|
_In_ LPCWSTR parameter,
|
||||||
|
_Out_ LPBYTE *bufptr)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetConfigGetAll(
|
||||||
|
_In_opt_ LPCWSTR server,
|
||||||
|
_In_ LPCWSTR component,
|
||||||
|
_Out_ LPBYTE *bufptr)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NET_API_STATUS
|
||||||
|
WINAPI
|
||||||
|
NetConfigSet(
|
||||||
|
_In_opt_ LPCWSTR server,
|
||||||
|
_In_opt_ LPCWSTR reserved1,
|
||||||
|
_In_ LPCWSTR component,
|
||||||
|
_In_ DWORD level,
|
||||||
|
_In_ DWORD reserved2,
|
||||||
|
_In_ LPBYTE buf,
|
||||||
|
_In_ DWORD reserved3)
|
||||||
|
{
|
||||||
|
return ERROR_NOT_SUPPORTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
NET_API_STATUS
|
NET_API_STATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
NetMessageBufferSend(
|
NetMessageBufferSend(
|
||||||
|
|
Loading…
Reference in a new issue