Win32 API 日本語リファレンス
ホームDevices.Sensors › SENSOR_CONNECTION_TYPES

SENSOR_CONNECTION_TYPES

列挙型
基底型i4

メンバー 3

名前10進16進
SensorConnectionType_Integrated00x0
SensorConnectionType_Attached10x1
SensorConnectionType_External20x2

各言語での定義

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

typedef enum SENSOR_CONNECTION_TYPES : int {
    SensorConnectionType_Integrated = 0,
    SensorConnectionType_Attached = 1,
    SensorConnectionType_External = 2
} SENSOR_CONNECTION_TYPES;
public enum SENSOR_CONNECTION_TYPES : int
{
    SensorConnectionType_Integrated = 0,
    SensorConnectionType_Attached = 1,
    SensorConnectionType_External = 2,
}
Public Enum SENSOR_CONNECTION_TYPES As Integer
    SensorConnectionType_Integrated = 0
    SensorConnectionType_Attached = 1
    SensorConnectionType_External = 2
End Enum
import enum

class SENSOR_CONNECTION_TYPES(enum.IntEnum):
    SensorConnectionType_Integrated = 0
    SensorConnectionType_Attached = 1
    SensorConnectionType_External = 2
// SENSOR_CONNECTION_TYPES
pub const SensorConnectionType_Integrated: i32 = 0;
pub const SensorConnectionType_Attached: i32 = 1;
pub const SensorConnectionType_External: i32 = 2;
// SENSOR_CONNECTION_TYPES
const (
	SensorConnectionType_Integrated int32 = 0
	SensorConnectionType_Attached int32 = 1
	SensorConnectionType_External int32 = 2
)
const
  SensorConnectionType_Integrated = 0;
  SensorConnectionType_Attached = 1;
  SensorConnectionType_External = 2;
// SENSOR_CONNECTION_TYPES
pub const SensorConnectionType_Integrated: i32 = 0;
pub const SensorConnectionType_Attached: i32 = 1;
pub const SensorConnectionType_External: i32 = 2;
const
  SensorConnectionType_Integrated* = 0
  SensorConnectionType_Attached* = 1
  SensorConnectionType_External* = 2
enum SENSOR_CONNECTION_TYPES : int {
    SensorConnectionType_Integrated = 0,
    SensorConnectionType_Attached = 1,
    SensorConnectionType_External = 2,
}
#define global SensorConnectionType_Integrated 0x0
#define global SensorConnectionType_Attached   0x1
#define global SensorConnectionType_External   0x2