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

STORAGE_FAILURE_PREDICTION_CONFIG

構造体
サイズx64: 12 バイト / x86: 12 バイト

サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。

フィールド

フィールドサイズx64x86説明
VersionDWORD4+0+0構造体のバージョン番号。
SizeDWORD4+4+4この構造体のサイズをバイト単位で示す。
SetBOOLEAN1+8+8設定を更新するか問い合わせるかを示す真偽値。TRUEで設定変更。
EnabledBOOLEAN1+9+9障害予測(SMART)機能が有効かを示す真偽値。
ReservedWORD2+10+10将来の拡張のために予約された16ビット領域。

各言語での定義

#include <windows.h>

// STORAGE_FAILURE_PREDICTION_CONFIG  (x64 12 / x86 12 バイト)
typedef struct STORAGE_FAILURE_PREDICTION_CONFIG {
    DWORD Version;
    DWORD Size;
    BOOLEAN Set;
    BOOLEAN Enabled;
    WORD Reserved;
} STORAGE_FAILURE_PREDICTION_CONFIG;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct STORAGE_FAILURE_PREDICTION_CONFIG
{
    public uint Version;
    public uint Size;
    [MarshalAs(UnmanagedType.U1)] public bool Set;
    [MarshalAs(UnmanagedType.U1)] public bool Enabled;
    public ushort Reserved;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure STORAGE_FAILURE_PREDICTION_CONFIG
    Public Version As UInteger
    Public Size As UInteger
    <MarshalAs(UnmanagedType.U1)> Public Set As Boolean
    <MarshalAs(UnmanagedType.U1)> Public Enabled As Boolean
    Public Reserved As UShort
End Structure
import ctypes
from ctypes import wintypes

class STORAGE_FAILURE_PREDICTION_CONFIG(ctypes.Structure):
    _fields_ = [
        ("Version", wintypes.DWORD),
        ("Size", wintypes.DWORD),
        ("Set", ctypes.c_byte),
        ("Enabled", ctypes.c_byte),
        ("Reserved", ctypes.c_ushort),
    ]
#[repr(C)]
pub struct STORAGE_FAILURE_PREDICTION_CONFIG {
    pub Version: u32,
    pub Size: u32,
    pub Set: u8,
    pub Enabled: u8,
    pub Reserved: u16,
}
import "golang.org/x/sys/windows"

type STORAGE_FAILURE_PREDICTION_CONFIG struct {
	Version uint32
	Size uint32
	Set byte
	Enabled byte
	Reserved uint16
}
type
  STORAGE_FAILURE_PREDICTION_CONFIG = record
    Version: DWORD;
    Size: DWORD;
    Set: ByteBool;
    Enabled: ByteBool;
    Reserved: Word;
  end;
const STORAGE_FAILURE_PREDICTION_CONFIG = extern struct {
    Version: u32,
    Size: u32,
    Set: u8,
    Enabled: u8,
    Reserved: u16,
};
type
  STORAGE_FAILURE_PREDICTION_CONFIG {.bycopy.} = object
    Version: uint32
    Size: uint32
    Set: uint8
    Enabled: uint8
    Reserved: uint16
struct STORAGE_FAILURE_PREDICTION_CONFIG
{
    uint Version;
    uint Size;
    ubyte Set;
    ubyte Enabled;
    ushort Reserved;
}

HSP用 定義

HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。

; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; STORAGE_FAILURE_PREDICTION_CONFIG サイズ: 12 バイト(x64)
dim st, 3    ; 4byte整数×3(構造体サイズ 12 / 4 切り上げ)
; Version : DWORD (+0, 4byte)  st.0 = 値  /  値 = st.0   (lpoke/lpeek も可)
; Size : DWORD (+4, 4byte)  st.1 = 値  /  値 = st.1   (lpoke/lpeek も可)
; Set : BOOLEAN (+8, 1byte)  poke st,8,値  /  値 = peek(st,8)
; Enabled : BOOLEAN (+9, 1byte)  poke st,9,値  /  値 = peek(st,9)
; Reserved : WORD (+10, 2byte)  wpoke st,10,値  /  値 = wpeek(st,10)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。
; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global STORAGE_FAILURE_PREDICTION_CONFIG
    #field int Version
    #field int Size
    #field bool1 Set
    #field bool1 Enabled
    #field short Reserved
#endstruct

stdim st, STORAGE_FAILURE_PREDICTION_CONFIG        ; NSTRUCT 変数を確保
st->Version = 100
mes "Version=" + st->Version