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.
27 lines
436 B
27 lines
436 B
#ifndef MAC
|
|
#include <security.h>
|
|
#endif
|
|
|
|
#include <bootdefs.h>
|
|
#include <ntlmsspi.h>
|
|
#include <crypt.h>
|
|
#include <cred.h>
|
|
|
|
BOOL
|
|
SspGetWorkstation(
|
|
PSSP_CREDENTIAL Credential
|
|
);
|
|
|
|
BOOL
|
|
SspGetWorkstation(
|
|
PSSP_CREDENTIAL Credential
|
|
)
|
|
{
|
|
//
|
|
// We don't necessarily know this during boot. The NTLMSSP
|
|
// package will use "none" if we return FALSE here.
|
|
//
|
|
|
|
return FALSE;
|
|
|
|
}
|