Share via


SpGetTokenFromId

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

This function creates an object token corresponding to the specified token identifier. This function assists in locating and creating an object token without having to search or change the registry directly.

Syntax

inline HRESULT SpGetTokenFromId(
  const WCHAR* pszTokenId,
  ISpObjectToken** ppToken,
  BOOL* fCreateIfNotExist = FALSE
);

Parameters

  • pszTokenId
    [in] Pointer to a token identifier.
  • ppToken
    [out] Address of a pointer to an object implementing ISpObjectToken that corresponds to the provided identifier. The token is created with CoCreateInstance and must be manually freed when no longer required.
  • fCreateIfNotExist
    [in] Optional pointer to a value indicating if the object is to be created if it does not currently exist. Set this value to TRUE to create the object, and to FALSE otherwise. FALSE is the default.

Return Value

The following table shows the possible return values.

Value Description

S_OK

Function completed successfully.

FAILED(hr)

Appropriate error message.

Requirements

Header sphelper.h
Library sapilib.lib
Windows Embedded CE Windows CE .NET 4.1 and later

See Also

Reference

SAPI Functions