mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[BASESRV]
Stubplement BaseSrvNlsLogon and BaseSrvNlsUpdateRegistryCache needed by Windows-2k3's WINSRV.DLL . Their return value types are unknown, but the number of parameters was obtained by reading http://wcwp.googlecode.com/svn/trunk/wcwp/bin/masm32/include/basesrv.inc . svn path=/trunk/; revision=60287
This commit is contained in:
parent
04c01edfae
commit
dd9e5ada7d
2 changed files with 21 additions and 0 deletions
|
@ -1,2 +1,4 @@
|
|||
@ stdcall BaseSetProcessCreateNotify(ptr)
|
||||
@ stdcall BaseSrvNlsLogon(ptr)
|
||||
@ stdcall BaseSrvNlsUpdateRegistryCache(ptr ptr)
|
||||
@ stdcall ServerDllInitialization(ptr)
|
||||
|
|
|
@ -350,4 +350,23 @@ CSR_API(BaseSrvNlsGetUserInfo)
|
|||
return Status;
|
||||
}
|
||||
|
||||
/* PUBLIC APIS ****************************************************************/
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
BaseSrvNlsLogon(DWORD Unknown)
|
||||
{
|
||||
DPRINT1("%s(%lu) not yet implemented\n", __FUNCTION__, Unknown);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
BaseSrvNlsUpdateRegistryCache(DWORD Unknown1,
|
||||
DWORD Unknown2)
|
||||
{
|
||||
DPRINT1("%s(%lu, %lu) not yet implemented\n", __FUNCTION__, Unknown1, Unknown2);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue