共用方式為


SpMarshallSupplementalCredsFn 回呼函式 (ntsecpkg.h)

SpMarshallSupplementalCreds 函式會將補充認證從公用格式轉換成適合本機過程調用的格式。

語法

SpMarshallSupplementalCredsFn Spmarshallsupplementalcredsfn;

NTSTATUS Spmarshallsupplementalcredsfn(
  [in]  ULONG CredentialSize,
  [in]  PUCHAR Credentials,
  [out] PULONG MarshalledCredSize,
  [out] PVOID *MarshalledCreds
)
{...}

參數

[in] CredentialSize

指定補充認證的大小。

[in] Credentials

補充認證的指標。

[out] MarshalledCredSize

Pointer to the size of the MarshalledCreds buffer.

[out] MarshalledCreds

接收包含 串行化 認證的緩衝區位址的指標。 呼叫 AllocateHeap 函式來配置此緩衝區的記憶體。

傳回值

如果函式成功,請傳回STATUS_SUCCESS。

如果函式失敗,則傳回 NTSTATUS 程式代碼,指出失敗的原因。

備註

SSP/AP 必須實作 SpMarshallSupplementalCreds 函式;不過,提供給實作的實際名稱是由開發人員決定。

SpMarshallSupplementalCreds 函式的指標可在從 SpUserModeInitialize 函式收到的SECPKG_USER_FUNCTION_TABLE結構中使用。

規格需求

需求
最低支援的用戶端 Windows XP [僅限傳統型應用程式]
最低支援的伺服器 Windows Server 2003 [僅限桌面應用程式]
目標平台 Windows
標頭 ntsecpkg.h

另請參閱

AllocateHeap

SECPKG_USER_FUNCTION_TABLE

SpUserModeInitialize