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

SecDelegationType

列挙型
基底型i4

メンバー 5

名前10進16進
SecFull00x0
SecService10x1
SecTree20x2
SecDirectory30x3
SecObject40x4

各言語での定義

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

typedef enum SecDelegationType : int {
    SecFull = 0,
    SecService = 1,
    SecTree = 2,
    SecDirectory = 3,
    SecObject = 4
} SecDelegationType;
public enum SecDelegationType : int
{
    SecFull = 0,
    SecService = 1,
    SecTree = 2,
    SecDirectory = 3,
    SecObject = 4,
}
Public Enum SecDelegationType As Integer
    SecFull = 0
    SecService = 1
    SecTree = 2
    SecDirectory = 3
    SecObject = 4
End Enum
import enum

class SecDelegationType(enum.IntEnum):
    SecFull = 0
    SecService = 1
    SecTree = 2
    SecDirectory = 3
    SecObject = 4
// SecDelegationType
pub const SecFull: i32 = 0;
pub const SecService: i32 = 1;
pub const SecTree: i32 = 2;
pub const SecDirectory: i32 = 3;
pub const SecObject: i32 = 4;
// SecDelegationType
const (
	SecFull int32 = 0
	SecService int32 = 1
	SecTree int32 = 2
	SecDirectory int32 = 3
	SecObject int32 = 4
)
const
  SecFull = 0;
  SecService = 1;
  SecTree = 2;
  SecDirectory = 3;
  SecObject = 4;
// SecDelegationType
pub const SecFull: i32 = 0;
pub const SecService: i32 = 1;
pub const SecTree: i32 = 2;
pub const SecDirectory: i32 = 3;
pub const SecObject: i32 = 4;
const
  SecFull* = 0
  SecService* = 1
  SecTree* = 2
  SecDirectory* = 3
  SecObject* = 4
enum SecDelegationType : int {
    SecFull = 0,
    SecService = 1,
    SecTree = 2,
    SecDirectory = 3,
    SecObject = 4,
}
#define global SecFull      0x0
#define global SecService   0x1
#define global SecTree      0x2
#define global SecDirectory 0x3
#define global SecObject    0x4