Win32 API 日本語リファレンス
ホームData.Xml.XmlLite › XmlReadState

XmlReadState

列挙型
基底型i4

メンバー 5

名前10進16進
XmlReadState_Initial00x0
XmlReadState_Interactive10x1
XmlReadState_Error20x2
XmlReadState_EndOfFile30x3
XmlReadState_Closed40x4

各言語での定義

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

typedef enum XmlReadState : int {
    XmlReadState_Initial = 0,
    XmlReadState_Interactive = 1,
    XmlReadState_Error = 2,
    XmlReadState_EndOfFile = 3,
    XmlReadState_Closed = 4
} XmlReadState;
public enum XmlReadState : int
{
    XmlReadState_Initial = 0,
    XmlReadState_Interactive = 1,
    XmlReadState_Error = 2,
    XmlReadState_EndOfFile = 3,
    XmlReadState_Closed = 4,
}
Public Enum XmlReadState As Integer
    XmlReadState_Initial = 0
    XmlReadState_Interactive = 1
    XmlReadState_Error = 2
    XmlReadState_EndOfFile = 3
    XmlReadState_Closed = 4
End Enum
import enum

class XmlReadState(enum.IntEnum):
    XmlReadState_Initial = 0
    XmlReadState_Interactive = 1
    XmlReadState_Error = 2
    XmlReadState_EndOfFile = 3
    XmlReadState_Closed = 4
// XmlReadState
pub const XmlReadState_Initial: i32 = 0;
pub const XmlReadState_Interactive: i32 = 1;
pub const XmlReadState_Error: i32 = 2;
pub const XmlReadState_EndOfFile: i32 = 3;
pub const XmlReadState_Closed: i32 = 4;
// XmlReadState
const (
	XmlReadState_Initial int32 = 0
	XmlReadState_Interactive int32 = 1
	XmlReadState_Error int32 = 2
	XmlReadState_EndOfFile int32 = 3
	XmlReadState_Closed int32 = 4
)
const
  XmlReadState_Initial = 0;
  XmlReadState_Interactive = 1;
  XmlReadState_Error = 2;
  XmlReadState_EndOfFile = 3;
  XmlReadState_Closed = 4;
// XmlReadState
pub const XmlReadState_Initial: i32 = 0;
pub const XmlReadState_Interactive: i32 = 1;
pub const XmlReadState_Error: i32 = 2;
pub const XmlReadState_EndOfFile: i32 = 3;
pub const XmlReadState_Closed: i32 = 4;
const
  XmlReadState_Initial* = 0
  XmlReadState_Interactive* = 1
  XmlReadState_Error* = 2
  XmlReadState_EndOfFile* = 3
  XmlReadState_Closed* = 4
enum XmlReadState : int {
    XmlReadState_Initial = 0,
    XmlReadState_Interactive = 1,
    XmlReadState_Error = 2,
    XmlReadState_EndOfFile = 3,
    XmlReadState_Closed = 4,
}
#define global XmlReadState_Initial     0x0
#define global XmlReadState_Interactive 0x1
#define global XmlReadState_Error       0x2
#define global XmlReadState_EndOfFile   0x3
#define global XmlReadState_Closed      0x4