Win32 API 日本語リファレンス
ホームNetworkManagement.Snmp › SNMP_ERROR_STATUS

SNMP_ERROR_STATUS

列挙型
基底型u4

メンバー 19

名前10進16進
SNMP_ERRORSTATUS_NOERROR00x0
SNMP_ERRORSTATUS_TOOBIG10x1
SNMP_ERRORSTATUS_NOSUCHNAME20x2
SNMP_ERRORSTATUS_BADVALUE30x3
SNMP_ERRORSTATUS_READONLY40x4
SNMP_ERRORSTATUS_GENERR50x5
SNMP_ERRORSTATUS_NOACCESS60x6
SNMP_ERRORSTATUS_WRONGTYPE70x7
SNMP_ERRORSTATUS_WRONGLENGTH80x8
SNMP_ERRORSTATUS_WRONGENCODING90x9
SNMP_ERRORSTATUS_WRONGVALUE100xA
SNMP_ERRORSTATUS_NOCREATION110xB
SNMP_ERRORSTATUS_INCONSISTENTVALUE120xC
SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE130xD
SNMP_ERRORSTATUS_COMMITFAILED140xE
SNMP_ERRORSTATUS_UNDOFAILED150xF
SNMP_ERRORSTATUS_AUTHORIZATIONERROR160x10
SNMP_ERRORSTATUS_NOTWRITABLE170x11
SNMP_ERRORSTATUS_INCONSISTENTNAME180x12

各言語での定義

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

typedef enum SNMP_ERROR_STATUS : unsigned int {
    SNMP_ERRORSTATUS_NOERROR = 0,
    SNMP_ERRORSTATUS_TOOBIG = 1,
    SNMP_ERRORSTATUS_NOSUCHNAME = 2,
    SNMP_ERRORSTATUS_BADVALUE = 3,
    SNMP_ERRORSTATUS_READONLY = 4,
    SNMP_ERRORSTATUS_GENERR = 5,
    SNMP_ERRORSTATUS_NOACCESS = 6,
    SNMP_ERRORSTATUS_WRONGTYPE = 7,
    SNMP_ERRORSTATUS_WRONGLENGTH = 8,
    SNMP_ERRORSTATUS_WRONGENCODING = 9,
    SNMP_ERRORSTATUS_WRONGVALUE = 10,
    SNMP_ERRORSTATUS_NOCREATION = 11,
    SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12,
    SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13,
    SNMP_ERRORSTATUS_COMMITFAILED = 14,
    SNMP_ERRORSTATUS_UNDOFAILED = 15,
    SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16,
    SNMP_ERRORSTATUS_NOTWRITABLE = 17,
    SNMP_ERRORSTATUS_INCONSISTENTNAME = 18
} SNMP_ERROR_STATUS;
public enum SNMP_ERROR_STATUS : uint
{
    SNMP_ERRORSTATUS_NOERROR = 0,
    SNMP_ERRORSTATUS_TOOBIG = 1,
    SNMP_ERRORSTATUS_NOSUCHNAME = 2,
    SNMP_ERRORSTATUS_BADVALUE = 3,
    SNMP_ERRORSTATUS_READONLY = 4,
    SNMP_ERRORSTATUS_GENERR = 5,
    SNMP_ERRORSTATUS_NOACCESS = 6,
    SNMP_ERRORSTATUS_WRONGTYPE = 7,
    SNMP_ERRORSTATUS_WRONGLENGTH = 8,
    SNMP_ERRORSTATUS_WRONGENCODING = 9,
    SNMP_ERRORSTATUS_WRONGVALUE = 10,
    SNMP_ERRORSTATUS_NOCREATION = 11,
    SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12,
    SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13,
    SNMP_ERRORSTATUS_COMMITFAILED = 14,
    SNMP_ERRORSTATUS_UNDOFAILED = 15,
    SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16,
    SNMP_ERRORSTATUS_NOTWRITABLE = 17,
    SNMP_ERRORSTATUS_INCONSISTENTNAME = 18,
}
Public Enum SNMP_ERROR_STATUS As UInteger
    SNMP_ERRORSTATUS_NOERROR = 0
    SNMP_ERRORSTATUS_TOOBIG = 1
    SNMP_ERRORSTATUS_NOSUCHNAME = 2
    SNMP_ERRORSTATUS_BADVALUE = 3
    SNMP_ERRORSTATUS_READONLY = 4
    SNMP_ERRORSTATUS_GENERR = 5
    SNMP_ERRORSTATUS_NOACCESS = 6
    SNMP_ERRORSTATUS_WRONGTYPE = 7
    SNMP_ERRORSTATUS_WRONGLENGTH = 8
    SNMP_ERRORSTATUS_WRONGENCODING = 9
    SNMP_ERRORSTATUS_WRONGVALUE = 10
    SNMP_ERRORSTATUS_NOCREATION = 11
    SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12
    SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13
    SNMP_ERRORSTATUS_COMMITFAILED = 14
    SNMP_ERRORSTATUS_UNDOFAILED = 15
    SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16
    SNMP_ERRORSTATUS_NOTWRITABLE = 17
    SNMP_ERRORSTATUS_INCONSISTENTNAME = 18
End Enum
import enum

class SNMP_ERROR_STATUS(enum.IntEnum):
    SNMP_ERRORSTATUS_NOERROR = 0
    SNMP_ERRORSTATUS_TOOBIG = 1
    SNMP_ERRORSTATUS_NOSUCHNAME = 2
    SNMP_ERRORSTATUS_BADVALUE = 3
    SNMP_ERRORSTATUS_READONLY = 4
    SNMP_ERRORSTATUS_GENERR = 5
    SNMP_ERRORSTATUS_NOACCESS = 6
    SNMP_ERRORSTATUS_WRONGTYPE = 7
    SNMP_ERRORSTATUS_WRONGLENGTH = 8
    SNMP_ERRORSTATUS_WRONGENCODING = 9
    SNMP_ERRORSTATUS_WRONGVALUE = 10
    SNMP_ERRORSTATUS_NOCREATION = 11
    SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12
    SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13
    SNMP_ERRORSTATUS_COMMITFAILED = 14
    SNMP_ERRORSTATUS_UNDOFAILED = 15
    SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16
    SNMP_ERRORSTATUS_NOTWRITABLE = 17
    SNMP_ERRORSTATUS_INCONSISTENTNAME = 18
// SNMP_ERROR_STATUS
pub const SNMP_ERRORSTATUS_NOERROR: u32 = 0;
pub const SNMP_ERRORSTATUS_TOOBIG: u32 = 1;
pub const SNMP_ERRORSTATUS_NOSUCHNAME: u32 = 2;
pub const SNMP_ERRORSTATUS_BADVALUE: u32 = 3;
pub const SNMP_ERRORSTATUS_READONLY: u32 = 4;
pub const SNMP_ERRORSTATUS_GENERR: u32 = 5;
pub const SNMP_ERRORSTATUS_NOACCESS: u32 = 6;
pub const SNMP_ERRORSTATUS_WRONGTYPE: u32 = 7;
pub const SNMP_ERRORSTATUS_WRONGLENGTH: u32 = 8;
pub const SNMP_ERRORSTATUS_WRONGENCODING: u32 = 9;
pub const SNMP_ERRORSTATUS_WRONGVALUE: u32 = 10;
pub const SNMP_ERRORSTATUS_NOCREATION: u32 = 11;
pub const SNMP_ERRORSTATUS_INCONSISTENTVALUE: u32 = 12;
pub const SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE: u32 = 13;
pub const SNMP_ERRORSTATUS_COMMITFAILED: u32 = 14;
pub const SNMP_ERRORSTATUS_UNDOFAILED: u32 = 15;
pub const SNMP_ERRORSTATUS_AUTHORIZATIONERROR: u32 = 16;
pub const SNMP_ERRORSTATUS_NOTWRITABLE: u32 = 17;
pub const SNMP_ERRORSTATUS_INCONSISTENTNAME: u32 = 18;
// SNMP_ERROR_STATUS
const (
	SNMP_ERRORSTATUS_NOERROR uint32 = 0
	SNMP_ERRORSTATUS_TOOBIG uint32 = 1
	SNMP_ERRORSTATUS_NOSUCHNAME uint32 = 2
	SNMP_ERRORSTATUS_BADVALUE uint32 = 3
	SNMP_ERRORSTATUS_READONLY uint32 = 4
	SNMP_ERRORSTATUS_GENERR uint32 = 5
	SNMP_ERRORSTATUS_NOACCESS uint32 = 6
	SNMP_ERRORSTATUS_WRONGTYPE uint32 = 7
	SNMP_ERRORSTATUS_WRONGLENGTH uint32 = 8
	SNMP_ERRORSTATUS_WRONGENCODING uint32 = 9
	SNMP_ERRORSTATUS_WRONGVALUE uint32 = 10
	SNMP_ERRORSTATUS_NOCREATION uint32 = 11
	SNMP_ERRORSTATUS_INCONSISTENTVALUE uint32 = 12
	SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE uint32 = 13
	SNMP_ERRORSTATUS_COMMITFAILED uint32 = 14
	SNMP_ERRORSTATUS_UNDOFAILED uint32 = 15
	SNMP_ERRORSTATUS_AUTHORIZATIONERROR uint32 = 16
	SNMP_ERRORSTATUS_NOTWRITABLE uint32 = 17
	SNMP_ERRORSTATUS_INCONSISTENTNAME uint32 = 18
)
const
  SNMP_ERRORSTATUS_NOERROR = 0;
  SNMP_ERRORSTATUS_TOOBIG = 1;
  SNMP_ERRORSTATUS_NOSUCHNAME = 2;
  SNMP_ERRORSTATUS_BADVALUE = 3;
  SNMP_ERRORSTATUS_READONLY = 4;
  SNMP_ERRORSTATUS_GENERR = 5;
  SNMP_ERRORSTATUS_NOACCESS = 6;
  SNMP_ERRORSTATUS_WRONGTYPE = 7;
  SNMP_ERRORSTATUS_WRONGLENGTH = 8;
  SNMP_ERRORSTATUS_WRONGENCODING = 9;
  SNMP_ERRORSTATUS_WRONGVALUE = 10;
  SNMP_ERRORSTATUS_NOCREATION = 11;
  SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12;
  SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13;
  SNMP_ERRORSTATUS_COMMITFAILED = 14;
  SNMP_ERRORSTATUS_UNDOFAILED = 15;
  SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16;
  SNMP_ERRORSTATUS_NOTWRITABLE = 17;
  SNMP_ERRORSTATUS_INCONSISTENTNAME = 18;
// SNMP_ERROR_STATUS
pub const SNMP_ERRORSTATUS_NOERROR: u32 = 0;
pub const SNMP_ERRORSTATUS_TOOBIG: u32 = 1;
pub const SNMP_ERRORSTATUS_NOSUCHNAME: u32 = 2;
pub const SNMP_ERRORSTATUS_BADVALUE: u32 = 3;
pub const SNMP_ERRORSTATUS_READONLY: u32 = 4;
pub const SNMP_ERRORSTATUS_GENERR: u32 = 5;
pub const SNMP_ERRORSTATUS_NOACCESS: u32 = 6;
pub const SNMP_ERRORSTATUS_WRONGTYPE: u32 = 7;
pub const SNMP_ERRORSTATUS_WRONGLENGTH: u32 = 8;
pub const SNMP_ERRORSTATUS_WRONGENCODING: u32 = 9;
pub const SNMP_ERRORSTATUS_WRONGVALUE: u32 = 10;
pub const SNMP_ERRORSTATUS_NOCREATION: u32 = 11;
pub const SNMP_ERRORSTATUS_INCONSISTENTVALUE: u32 = 12;
pub const SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE: u32 = 13;
pub const SNMP_ERRORSTATUS_COMMITFAILED: u32 = 14;
pub const SNMP_ERRORSTATUS_UNDOFAILED: u32 = 15;
pub const SNMP_ERRORSTATUS_AUTHORIZATIONERROR: u32 = 16;
pub const SNMP_ERRORSTATUS_NOTWRITABLE: u32 = 17;
pub const SNMP_ERRORSTATUS_INCONSISTENTNAME: u32 = 18;
const
  SNMP_ERRORSTATUS_NOERROR* = 0
  SNMP_ERRORSTATUS_TOOBIG* = 1
  SNMP_ERRORSTATUS_NOSUCHNAME* = 2
  SNMP_ERRORSTATUS_BADVALUE* = 3
  SNMP_ERRORSTATUS_READONLY* = 4
  SNMP_ERRORSTATUS_GENERR* = 5
  SNMP_ERRORSTATUS_NOACCESS* = 6
  SNMP_ERRORSTATUS_WRONGTYPE* = 7
  SNMP_ERRORSTATUS_WRONGLENGTH* = 8
  SNMP_ERRORSTATUS_WRONGENCODING* = 9
  SNMP_ERRORSTATUS_WRONGVALUE* = 10
  SNMP_ERRORSTATUS_NOCREATION* = 11
  SNMP_ERRORSTATUS_INCONSISTENTVALUE* = 12
  SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE* = 13
  SNMP_ERRORSTATUS_COMMITFAILED* = 14
  SNMP_ERRORSTATUS_UNDOFAILED* = 15
  SNMP_ERRORSTATUS_AUTHORIZATIONERROR* = 16
  SNMP_ERRORSTATUS_NOTWRITABLE* = 17
  SNMP_ERRORSTATUS_INCONSISTENTNAME* = 18
enum SNMP_ERROR_STATUS : uint {
    SNMP_ERRORSTATUS_NOERROR = 0,
    SNMP_ERRORSTATUS_TOOBIG = 1,
    SNMP_ERRORSTATUS_NOSUCHNAME = 2,
    SNMP_ERRORSTATUS_BADVALUE = 3,
    SNMP_ERRORSTATUS_READONLY = 4,
    SNMP_ERRORSTATUS_GENERR = 5,
    SNMP_ERRORSTATUS_NOACCESS = 6,
    SNMP_ERRORSTATUS_WRONGTYPE = 7,
    SNMP_ERRORSTATUS_WRONGLENGTH = 8,
    SNMP_ERRORSTATUS_WRONGENCODING = 9,
    SNMP_ERRORSTATUS_WRONGVALUE = 10,
    SNMP_ERRORSTATUS_NOCREATION = 11,
    SNMP_ERRORSTATUS_INCONSISTENTVALUE = 12,
    SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE = 13,
    SNMP_ERRORSTATUS_COMMITFAILED = 14,
    SNMP_ERRORSTATUS_UNDOFAILED = 15,
    SNMP_ERRORSTATUS_AUTHORIZATIONERROR = 16,
    SNMP_ERRORSTATUS_NOTWRITABLE = 17,
    SNMP_ERRORSTATUS_INCONSISTENTNAME = 18,
}
#define global SNMP_ERRORSTATUS_NOERROR             0x0
#define global SNMP_ERRORSTATUS_TOOBIG              0x1
#define global SNMP_ERRORSTATUS_NOSUCHNAME          0x2
#define global SNMP_ERRORSTATUS_BADVALUE            0x3
#define global SNMP_ERRORSTATUS_READONLY            0x4
#define global SNMP_ERRORSTATUS_GENERR              0x5
#define global SNMP_ERRORSTATUS_NOACCESS            0x6
#define global SNMP_ERRORSTATUS_WRONGTYPE           0x7
#define global SNMP_ERRORSTATUS_WRONGLENGTH         0x8
#define global SNMP_ERRORSTATUS_WRONGENCODING       0x9
#define global SNMP_ERRORSTATUS_WRONGVALUE          0xA
#define global SNMP_ERRORSTATUS_NOCREATION          0xB
#define global SNMP_ERRORSTATUS_INCONSISTENTVALUE   0xC
#define global SNMP_ERRORSTATUS_RESOURCEUNAVAILABLE 0xD
#define global SNMP_ERRORSTATUS_COMMITFAILED        0xE
#define global SNMP_ERRORSTATUS_UNDOFAILED          0xF
#define global SNMP_ERRORSTATUS_AUTHORIZATIONERROR  0x10
#define global SNMP_ERRORSTATUS_NOTWRITABLE         0x11
#define global SNMP_ERRORSTATUS_INCONSISTENTNAME    0x12