Win32 API 日本語リファレンス
ホームNetworking.ActiveDirectory › DS_NAME_ERROR

DS_NAME_ERROR

列挙型
基底型i4

メンバー 8

名前10進16進
DS_NAME_NO_ERROR00x0
DS_NAME_ERROR_RESOLVING10x1
DS_NAME_ERROR_NOT_FOUND20x2
DS_NAME_ERROR_NOT_UNIQUE30x3
DS_NAME_ERROR_NO_MAPPING40x4
DS_NAME_ERROR_DOMAIN_ONLY50x5
DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING60x6
DS_NAME_ERROR_TRUST_REFERRAL70x7

各言語での定義

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

typedef enum DS_NAME_ERROR : int {
    DS_NAME_NO_ERROR = 0,
    DS_NAME_ERROR_RESOLVING = 1,
    DS_NAME_ERROR_NOT_FOUND = 2,
    DS_NAME_ERROR_NOT_UNIQUE = 3,
    DS_NAME_ERROR_NO_MAPPING = 4,
    DS_NAME_ERROR_DOMAIN_ONLY = 5,
    DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,
    DS_NAME_ERROR_TRUST_REFERRAL = 7
} DS_NAME_ERROR;
public enum DS_NAME_ERROR : int
{
    DS_NAME_NO_ERROR = 0,
    DS_NAME_ERROR_RESOLVING = 1,
    DS_NAME_ERROR_NOT_FOUND = 2,
    DS_NAME_ERROR_NOT_UNIQUE = 3,
    DS_NAME_ERROR_NO_MAPPING = 4,
    DS_NAME_ERROR_DOMAIN_ONLY = 5,
    DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,
    DS_NAME_ERROR_TRUST_REFERRAL = 7,
}
Public Enum DS_NAME_ERROR As Integer
    DS_NAME_NO_ERROR = 0
    DS_NAME_ERROR_RESOLVING = 1
    DS_NAME_ERROR_NOT_FOUND = 2
    DS_NAME_ERROR_NOT_UNIQUE = 3
    DS_NAME_ERROR_NO_MAPPING = 4
    DS_NAME_ERROR_DOMAIN_ONLY = 5
    DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6
    DS_NAME_ERROR_TRUST_REFERRAL = 7
End Enum
import enum

class DS_NAME_ERROR(enum.IntEnum):
    DS_NAME_NO_ERROR = 0
    DS_NAME_ERROR_RESOLVING = 1
    DS_NAME_ERROR_NOT_FOUND = 2
    DS_NAME_ERROR_NOT_UNIQUE = 3
    DS_NAME_ERROR_NO_MAPPING = 4
    DS_NAME_ERROR_DOMAIN_ONLY = 5
    DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6
    DS_NAME_ERROR_TRUST_REFERRAL = 7
// DS_NAME_ERROR
pub const DS_NAME_NO_ERROR: i32 = 0;
pub const DS_NAME_ERROR_RESOLVING: i32 = 1;
pub const DS_NAME_ERROR_NOT_FOUND: i32 = 2;
pub const DS_NAME_ERROR_NOT_UNIQUE: i32 = 3;
pub const DS_NAME_ERROR_NO_MAPPING: i32 = 4;
pub const DS_NAME_ERROR_DOMAIN_ONLY: i32 = 5;
pub const DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: i32 = 6;
pub const DS_NAME_ERROR_TRUST_REFERRAL: i32 = 7;
// DS_NAME_ERROR
const (
	DS_NAME_NO_ERROR int32 = 0
	DS_NAME_ERROR_RESOLVING int32 = 1
	DS_NAME_ERROR_NOT_FOUND int32 = 2
	DS_NAME_ERROR_NOT_UNIQUE int32 = 3
	DS_NAME_ERROR_NO_MAPPING int32 = 4
	DS_NAME_ERROR_DOMAIN_ONLY int32 = 5
	DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING int32 = 6
	DS_NAME_ERROR_TRUST_REFERRAL int32 = 7
)
const
  DS_NAME_NO_ERROR = 0;
  DS_NAME_ERROR_RESOLVING = 1;
  DS_NAME_ERROR_NOT_FOUND = 2;
  DS_NAME_ERROR_NOT_UNIQUE = 3;
  DS_NAME_ERROR_NO_MAPPING = 4;
  DS_NAME_ERROR_DOMAIN_ONLY = 5;
  DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6;
  DS_NAME_ERROR_TRUST_REFERRAL = 7;
// DS_NAME_ERROR
pub const DS_NAME_NO_ERROR: i32 = 0;
pub const DS_NAME_ERROR_RESOLVING: i32 = 1;
pub const DS_NAME_ERROR_NOT_FOUND: i32 = 2;
pub const DS_NAME_ERROR_NOT_UNIQUE: i32 = 3;
pub const DS_NAME_ERROR_NO_MAPPING: i32 = 4;
pub const DS_NAME_ERROR_DOMAIN_ONLY: i32 = 5;
pub const DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: i32 = 6;
pub const DS_NAME_ERROR_TRUST_REFERRAL: i32 = 7;
const
  DS_NAME_NO_ERROR* = 0
  DS_NAME_ERROR_RESOLVING* = 1
  DS_NAME_ERROR_NOT_FOUND* = 2
  DS_NAME_ERROR_NOT_UNIQUE* = 3
  DS_NAME_ERROR_NO_MAPPING* = 4
  DS_NAME_ERROR_DOMAIN_ONLY* = 5
  DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING* = 6
  DS_NAME_ERROR_TRUST_REFERRAL* = 7
enum DS_NAME_ERROR : int {
    DS_NAME_NO_ERROR = 0,
    DS_NAME_ERROR_RESOLVING = 1,
    DS_NAME_ERROR_NOT_FOUND = 2,
    DS_NAME_ERROR_NOT_UNIQUE = 3,
    DS_NAME_ERROR_NO_MAPPING = 4,
    DS_NAME_ERROR_DOMAIN_ONLY = 5,
    DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING = 6,
    DS_NAME_ERROR_TRUST_REFERRAL = 7,
}
#define global DS_NAME_NO_ERROR                     0x0
#define global DS_NAME_ERROR_RESOLVING              0x1
#define global DS_NAME_ERROR_NOT_FOUND              0x2
#define global DS_NAME_ERROR_NOT_UNIQUE             0x3
#define global DS_NAME_ERROR_NO_MAPPING             0x4
#define global DS_NAME_ERROR_DOMAIN_ONLY            0x5
#define global DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING 0x6
#define global DS_NAME_ERROR_TRUST_REFERRAL         0x7