Leaked source code of windows server 2003
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.
 
 
 
 
 
 

102 lines
1.8 KiB

/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
account.h
Abstract:
Security related function prototypes.
Author:
Rita Wong (ritaw) 10-Apr-1992
Revision History:
--*/
#ifndef _SCACCOUNT_INCLUDED_
#define _SCACCOUNT_INCLUDED_
#define SC_LOCAL_DOMAIN_NAME L"."
#define SC_LOCAL_DOMAIN_NAME_LENGTH (sizeof(SC_LOCAL_DOMAIN_NAME) / sizeof(WCHAR) - 1)
#define SC_LOCAL_SYSTEM_USER_NAME L"LocalSystem"
#define SC_LOCAL_NTAUTH_NAME L"NT AUTHORITY"
#define SCDOMAIN_USERNAME_SEPARATOR L'\\'
//
// External global variables used by the lockapi.c module
//
extern UNICODE_STRING ScComputerName;
extern UNICODE_STRING ScAccountDomain;
BOOL
ScGetComputerNameAndMutex(
VOID
);
VOID
ScEndServiceAccount(
VOID
);
BOOL
ScInitServiceAccount(
VOID
);
DWORD
ScCanonAccountName(
IN LPWSTR AccountName,
OUT LPWSTR *CanonAccountName
);
DWORD
ScValidateAndSaveAccount(
IN LPWSTR ServiceName,
IN HKEY ServiceNameKey,
IN LPWSTR CanonAccountName,
IN LPWSTR Password OPTIONAL
);
DWORD
ScValidateAndChangeAccount(
IN LPSERVICE_RECORD ServiceRecord,
IN HKEY ServiceNameKey,
IN LPWSTR OldAccountName,
IN LPWSTR CanonAccountName,
IN LPWSTR Password OPTIONAL
);
VOID
ScRemoveAccount(
IN LPWSTR ServiceName
);
DWORD
ScLookupServiceAccount(
IN LPWSTR ServiceName,
OUT LPWSTR *AccountName
);
DWORD
ScLogonService(
IN LPWSTR ServiceName,
IN LPWSTR AccountName,
OUT LPHANDLE ServiceToken,
OUT LPHANDLE ProfileHandle OPTIONAL,
OUT PSID *ServiceSid
);
DWORD
ScGetAccountDomainInfo(
VOID
);
#endif // _SCACCOUNT_INCLUDED_