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

NtmsPortPosition

列挙型
基底型i4

メンバー 3

名前10進16進
NTMS_PORTPOSITION_UNKNOWN00x0
NTMS_PORTPOSITION_EXTENDED10x1
NTMS_PORTPOSITION_RETRACTED20x2

各言語での定義

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

typedef enum NtmsPortPosition : int {
    NTMS_PORTPOSITION_UNKNOWN = 0,
    NTMS_PORTPOSITION_EXTENDED = 1,
    NTMS_PORTPOSITION_RETRACTED = 2
} NtmsPortPosition;
public enum NtmsPortPosition : int
{
    NTMS_PORTPOSITION_UNKNOWN = 0,
    NTMS_PORTPOSITION_EXTENDED = 1,
    NTMS_PORTPOSITION_RETRACTED = 2,
}
Public Enum NtmsPortPosition As Integer
    NTMS_PORTPOSITION_UNKNOWN = 0
    NTMS_PORTPOSITION_EXTENDED = 1
    NTMS_PORTPOSITION_RETRACTED = 2
End Enum
import enum

class NtmsPortPosition(enum.IntEnum):
    NTMS_PORTPOSITION_UNKNOWN = 0
    NTMS_PORTPOSITION_EXTENDED = 1
    NTMS_PORTPOSITION_RETRACTED = 2
// NtmsPortPosition
pub const NTMS_PORTPOSITION_UNKNOWN: i32 = 0;
pub const NTMS_PORTPOSITION_EXTENDED: i32 = 1;
pub const NTMS_PORTPOSITION_RETRACTED: i32 = 2;
// NtmsPortPosition
const (
	NTMS_PORTPOSITION_UNKNOWN int32 = 0
	NTMS_PORTPOSITION_EXTENDED int32 = 1
	NTMS_PORTPOSITION_RETRACTED int32 = 2
)
const
  NTMS_PORTPOSITION_UNKNOWN = 0;
  NTMS_PORTPOSITION_EXTENDED = 1;
  NTMS_PORTPOSITION_RETRACTED = 2;
// NtmsPortPosition
pub const NTMS_PORTPOSITION_UNKNOWN: i32 = 0;
pub const NTMS_PORTPOSITION_EXTENDED: i32 = 1;
pub const NTMS_PORTPOSITION_RETRACTED: i32 = 2;
const
  NTMS_PORTPOSITION_UNKNOWN* = 0
  NTMS_PORTPOSITION_EXTENDED* = 1
  NTMS_PORTPOSITION_RETRACTED* = 2
enum NtmsPortPosition : int {
    NTMS_PORTPOSITION_UNKNOWN = 0,
    NTMS_PORTPOSITION_EXTENDED = 1,
    NTMS_PORTPOSITION_RETRACTED = 2,
}
#define global NTMS_PORTPOSITION_UNKNOWN   0x0
#define global NTMS_PORTPOSITION_EXTENDED  0x1
#define global NTMS_PORTPOSITION_RETRACTED 0x2