Win32 API 日本語リファレンス
ホームStorage.FileSystem › NtmsPortContent

NtmsPortContent

列挙型
基底型i4

メンバー 3

名前10進16進
NTMS_PORTCONTENT_UNKNOWN00x0
NTMS_PORTCONTENT_FULL10x1
NTMS_PORTCONTENT_EMPTY20x2

各言語での定義

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

typedef enum NtmsPortContent : int {
    NTMS_PORTCONTENT_UNKNOWN = 0,
    NTMS_PORTCONTENT_FULL = 1,
    NTMS_PORTCONTENT_EMPTY = 2
} NtmsPortContent;
public enum NtmsPortContent : int
{
    NTMS_PORTCONTENT_UNKNOWN = 0,
    NTMS_PORTCONTENT_FULL = 1,
    NTMS_PORTCONTENT_EMPTY = 2,
}
Public Enum NtmsPortContent As Integer
    NTMS_PORTCONTENT_UNKNOWN = 0
    NTMS_PORTCONTENT_FULL = 1
    NTMS_PORTCONTENT_EMPTY = 2
End Enum
import enum

class NtmsPortContent(enum.IntEnum):
    NTMS_PORTCONTENT_UNKNOWN = 0
    NTMS_PORTCONTENT_FULL = 1
    NTMS_PORTCONTENT_EMPTY = 2
// NtmsPortContent
pub const NTMS_PORTCONTENT_UNKNOWN: i32 = 0;
pub const NTMS_PORTCONTENT_FULL: i32 = 1;
pub const NTMS_PORTCONTENT_EMPTY: i32 = 2;
// NtmsPortContent
const (
	NTMS_PORTCONTENT_UNKNOWN int32 = 0
	NTMS_PORTCONTENT_FULL int32 = 1
	NTMS_PORTCONTENT_EMPTY int32 = 2
)
const
  NTMS_PORTCONTENT_UNKNOWN = 0;
  NTMS_PORTCONTENT_FULL = 1;
  NTMS_PORTCONTENT_EMPTY = 2;
// NtmsPortContent
pub const NTMS_PORTCONTENT_UNKNOWN: i32 = 0;
pub const NTMS_PORTCONTENT_FULL: i32 = 1;
pub const NTMS_PORTCONTENT_EMPTY: i32 = 2;
const
  NTMS_PORTCONTENT_UNKNOWN* = 0
  NTMS_PORTCONTENT_FULL* = 1
  NTMS_PORTCONTENT_EMPTY* = 2
enum NtmsPortContent : int {
    NTMS_PORTCONTENT_UNKNOWN = 0,
    NTMS_PORTCONTENT_FULL = 1,
    NTMS_PORTCONTENT_EMPTY = 2,
}
#define global NTMS_PORTCONTENT_UNKNOWN 0x0
#define global NTMS_PORTCONTENT_FULL    0x1
#define global NTMS_PORTCONTENT_EMPTY   0x2