ホーム › Devices.Fax › FAX_PRIORITY_TYPE_ENUM
FAX_PRIORITY_TYPE_ENUM
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| fptLOW | 0 | 0x0 |
| fptNORMAL | 1 | 0x1 |
| fptHIGH | 2 | 0x2 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum FAX_PRIORITY_TYPE_ENUM : int {
fptLOW = 0,
fptNORMAL = 1,
fptHIGH = 2
} FAX_PRIORITY_TYPE_ENUM;public enum FAX_PRIORITY_TYPE_ENUM : int
{
fptLOW = 0,
fptNORMAL = 1,
fptHIGH = 2,
}Public Enum FAX_PRIORITY_TYPE_ENUM As Integer
fptLOW = 0
fptNORMAL = 1
fptHIGH = 2
End Enumimport enum
class FAX_PRIORITY_TYPE_ENUM(enum.IntEnum):
fptLOW = 0
fptNORMAL = 1
fptHIGH = 2// FAX_PRIORITY_TYPE_ENUM
pub const fptLOW: i32 = 0;
pub const fptNORMAL: i32 = 1;
pub const fptHIGH: i32 = 2;// FAX_PRIORITY_TYPE_ENUM
const (
fptLOW int32 = 0
fptNORMAL int32 = 1
fptHIGH int32 = 2
)const
fptLOW = 0;
fptNORMAL = 1;
fptHIGH = 2;// FAX_PRIORITY_TYPE_ENUM
pub const fptLOW: i32 = 0;
pub const fptNORMAL: i32 = 1;
pub const fptHIGH: i32 = 2;const
fptLOW* = 0
fptNORMAL* = 1
fptHIGH* = 2enum FAX_PRIORITY_TYPE_ENUM : int {
fptLOW = 0,
fptNORMAL = 1,
fptHIGH = 2,
}#define global fptLOW 0x0
#define global fptNORMAL 0x1
#define global fptHIGH 0x2