Win32 API 日本語リファレンス
ホームSecurity.Authentication.Identity › KERB_PROFILE_BUFFER_TYPE

KERB_PROFILE_BUFFER_TYPE

列挙型
基底型i4

メンバー 3

名前10進16進説明
KerbInteractiveProfile20x2バッファーには、対話型のログオンセッションに関する情報が格納されます。
KerbSmartCardProfile40x4
KerbTicketProfile60x6バッファーには、Kerberos ログオンセッションに関する情報が格納されます。

公式ドキュメント

KERB_PROFILE_BUFFER_TYPE 列挙型は、返されるログオンプロファイルの種類を列挙します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum KERB_PROFILE_BUFFER_TYPE : int {
    KerbInteractiveProfile = 2,
    KerbSmartCardProfile = 4,
    KerbTicketProfile = 6
} KERB_PROFILE_BUFFER_TYPE;
public enum KERB_PROFILE_BUFFER_TYPE : int
{
    KerbInteractiveProfile = 2,
    KerbSmartCardProfile = 4,
    KerbTicketProfile = 6,
}
Public Enum KERB_PROFILE_BUFFER_TYPE As Integer
    KerbInteractiveProfile = 2
    KerbSmartCardProfile = 4
    KerbTicketProfile = 6
End Enum
import enum

class KERB_PROFILE_BUFFER_TYPE(enum.IntEnum):
    KerbInteractiveProfile = 2
    KerbSmartCardProfile = 4
    KerbTicketProfile = 6
// KERB_PROFILE_BUFFER_TYPE
pub const KerbInteractiveProfile: i32 = 2;
pub const KerbSmartCardProfile: i32 = 4;
pub const KerbTicketProfile: i32 = 6;
// KERB_PROFILE_BUFFER_TYPE
const (
	KerbInteractiveProfile int32 = 2
	KerbSmartCardProfile int32 = 4
	KerbTicketProfile int32 = 6
)
const
  KerbInteractiveProfile = 2;
  KerbSmartCardProfile = 4;
  KerbTicketProfile = 6;
// KERB_PROFILE_BUFFER_TYPE
pub const KerbInteractiveProfile: i32 = 2;
pub const KerbSmartCardProfile: i32 = 4;
pub const KerbTicketProfile: i32 = 6;
const
  KerbInteractiveProfile* = 2
  KerbSmartCardProfile* = 4
  KerbTicketProfile* = 6
enum KERB_PROFILE_BUFFER_TYPE : int {
    KerbInteractiveProfile = 2,
    KerbSmartCardProfile = 4,
    KerbTicketProfile = 6,
}
#define global KerbInteractiveProfile 0x2
#define global KerbSmartCardProfile   0x4
#define global KerbTicketProfile      0x6