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

WINUSB_POWER_POLICY

列挙型
基底型u4

メンバー 2

名前10進16進
AUTO_SUSPEND1290x81
SUSPEND_DELAY1310x83

各言語での定義

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

typedef enum WINUSB_POWER_POLICY : unsigned int {
    AUTO_SUSPEND = 129,
    SUSPEND_DELAY = 131
} WINUSB_POWER_POLICY;
public enum WINUSB_POWER_POLICY : uint
{
    AUTO_SUSPEND = 129,
    SUSPEND_DELAY = 131,
}
Public Enum WINUSB_POWER_POLICY As UInteger
    AUTO_SUSPEND = 129
    SUSPEND_DELAY = 131
End Enum
import enum

class WINUSB_POWER_POLICY(enum.IntEnum):
    AUTO_SUSPEND = 129
    SUSPEND_DELAY = 131
// WINUSB_POWER_POLICY
pub const AUTO_SUSPEND: u32 = 129;
pub const SUSPEND_DELAY: u32 = 131;
// WINUSB_POWER_POLICY
const (
	AUTO_SUSPEND uint32 = 129
	SUSPEND_DELAY uint32 = 131
)
const
  AUTO_SUSPEND = 129;
  SUSPEND_DELAY = 131;
// WINUSB_POWER_POLICY
pub const AUTO_SUSPEND: u32 = 129;
pub const SUSPEND_DELAY: u32 = 131;
const
  AUTO_SUSPEND* = 129
  SUSPEND_DELAY* = 131
enum WINUSB_POWER_POLICY : uint {
    AUTO_SUSPEND = 129,
    SUSPEND_DELAY = 131,
}
#define global AUTO_SUSPEND  0x81
#define global SUSPEND_DELAY 0x83