Win32 API 日本語リファレンス
ホームSystem.Wmi › WBEMSTATUS_FORMAT

WBEMSTATUS_FORMAT

列挙型
基底型i4

メンバー 2

名前10進16進
WBEMSTATUS_FORMAT_NEWLINE00x0
WBEMSTATUS_FORMAT_NO_NEWLINE10x1

各言語での定義

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

typedef enum WBEMSTATUS_FORMAT : int {
    WBEMSTATUS_FORMAT_NEWLINE = 0,
    WBEMSTATUS_FORMAT_NO_NEWLINE = 1
} WBEMSTATUS_FORMAT;
public enum WBEMSTATUS_FORMAT : int
{
    WBEMSTATUS_FORMAT_NEWLINE = 0,
    WBEMSTATUS_FORMAT_NO_NEWLINE = 1,
}
Public Enum WBEMSTATUS_FORMAT As Integer
    WBEMSTATUS_FORMAT_NEWLINE = 0
    WBEMSTATUS_FORMAT_NO_NEWLINE = 1
End Enum
import enum

class WBEMSTATUS_FORMAT(enum.IntEnum):
    WBEMSTATUS_FORMAT_NEWLINE = 0
    WBEMSTATUS_FORMAT_NO_NEWLINE = 1
// WBEMSTATUS_FORMAT
pub const WBEMSTATUS_FORMAT_NEWLINE: i32 = 0;
pub const WBEMSTATUS_FORMAT_NO_NEWLINE: i32 = 1;
// WBEMSTATUS_FORMAT
const (
	WBEMSTATUS_FORMAT_NEWLINE int32 = 0
	WBEMSTATUS_FORMAT_NO_NEWLINE int32 = 1
)
const
  WBEMSTATUS_FORMAT_NEWLINE = 0;
  WBEMSTATUS_FORMAT_NO_NEWLINE = 1;
// WBEMSTATUS_FORMAT
pub const WBEMSTATUS_FORMAT_NEWLINE: i32 = 0;
pub const WBEMSTATUS_FORMAT_NO_NEWLINE: i32 = 1;
const
  WBEMSTATUS_FORMAT_NEWLINE* = 0
  WBEMSTATUS_FORMAT_NO_NEWLINE* = 1
enum WBEMSTATUS_FORMAT : int {
    WBEMSTATUS_FORMAT_NEWLINE = 0,
    WBEMSTATUS_FORMAT_NO_NEWLINE = 1,
}
#define global WBEMSTATUS_FORMAT_NEWLINE    0x0
#define global WBEMSTATUS_FORMAT_NO_NEWLINE 0x1