Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
948 B

#include "termsrvpch.h"
#pragma hdrstop
static
void
WINAPI
CachedGetUserFromSid(
PSID pSid, PWCHAR pUserName, PULONG cbUserName
)
{
// We should properly return the string "(unknown)" but that's
// kept in utildll.dll, and we're here because utildll failed to load...
//
// Original function assumes that *cbUserName > 0 too
pUserName[*cbUserName-1] = L'\0';
}
static
void
WINAPI
CurrentDateTimeString(
LPWSTR pString
)
{
// original function doesn't check for NULL pointer either
pString[0] = L'\0';
}
static
LPWSTR
WINAPI
EnumerateMultiUserServers(
LPWSTR pDomain
)
{
return NULL;
}
//
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
//
DEFINE_PROCNAME_ENTRIES(utildll)
{
DLPENTRY(CachedGetUserFromSid)
DLPENTRY(CurrentDateTimeString)
DLPENTRY(EnumerateMultiUserServers)
};
DEFINE_PROCNAME_MAP(utildll)