ホーム › System.WindowsProgramming › WLDP_DEVICE_SECURITY_INFORMATION
WLDP_DEVICE_SECURITY_INFORMATION
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| UnlockIdSize | DWORD | 4 | +0 | +0 | UnlockIdが指すバッファのバイト数を示す。 |
| UnlockId | BYTE* | 8/4 | +8 | +4 | デバイスのロック解除に用いる識別子データへのポインター(バイト列)。 |
| ManufacturerIDLength | DWORD | 4 | +16 | +8 | ManufacturerIDの文字数(終端を除く長さ)を示す。 |
| ManufacturerID | LPWSTR | 8/4 | +24 | +12 | デバイス製造元を識別するワイド文字列。 |
各言語での定義
#include <windows.h>
// WLDP_DEVICE_SECURITY_INFORMATION (x64 32 / x86 16 バイト)
typedef struct WLDP_DEVICE_SECURITY_INFORMATION {
DWORD UnlockIdSize;
BYTE* UnlockId;
DWORD ManufacturerIDLength;
LPWSTR ManufacturerID;
} WLDP_DEVICE_SECURITY_INFORMATION;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WLDP_DEVICE_SECURITY_INFORMATION
{
public uint UnlockIdSize;
public IntPtr UnlockId;
public uint ManufacturerIDLength;
public IntPtr ManufacturerID;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure WLDP_DEVICE_SECURITY_INFORMATION
Public UnlockIdSize As UInteger
Public UnlockId As IntPtr
Public ManufacturerIDLength As UInteger
Public ManufacturerID As IntPtr
End Structureimport ctypes
from ctypes import wintypes
class WLDP_DEVICE_SECURITY_INFORMATION(ctypes.Structure):
_fields_ = [
("UnlockIdSize", wintypes.DWORD),
("UnlockId", ctypes.c_void_p),
("ManufacturerIDLength", wintypes.DWORD),
("ManufacturerID", ctypes.c_void_p),
]#[repr(C)]
pub struct WLDP_DEVICE_SECURITY_INFORMATION {
pub UnlockIdSize: u32,
pub UnlockId: *mut core::ffi::c_void,
pub ManufacturerIDLength: u32,
pub ManufacturerID: *mut core::ffi::c_void,
}import "golang.org/x/sys/windows"
type WLDP_DEVICE_SECURITY_INFORMATION struct {
UnlockIdSize uint32
UnlockId uintptr
ManufacturerIDLength uint32
ManufacturerID uintptr
}type
WLDP_DEVICE_SECURITY_INFORMATION = record
UnlockIdSize: DWORD;
UnlockId: Pointer;
ManufacturerIDLength: DWORD;
ManufacturerID: Pointer;
end;const WLDP_DEVICE_SECURITY_INFORMATION = extern struct {
UnlockIdSize: u32,
UnlockId: ?*anyopaque,
ManufacturerIDLength: u32,
ManufacturerID: ?*anyopaque,
};type
WLDP_DEVICE_SECURITY_INFORMATION {.bycopy.} = object
UnlockIdSize: uint32
UnlockId: pointer
ManufacturerIDLength: uint32
ManufacturerID: pointerstruct WLDP_DEVICE_SECURITY_INFORMATION
{
uint UnlockIdSize;
void* UnlockId;
uint ManufacturerIDLength;
void* ManufacturerID;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x86 レイアウト)
; WLDP_DEVICE_SECURITY_INFORMATION サイズ: 16 バイト(x86)
dim st, 4 ; 4byte整数×4(構造体サイズ 16 / 4 切り上げ)
; UnlockIdSize : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; UnlockId : BYTE* (+4, 4byte) st.1 = 値 / 値 = st.1 (lpoke/lpeek も可)
; ManufacturerIDLength : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; ManufacturerID : LPWSTR (+12, 4byte) st.3 = 値 / 値 = st.3 (lpoke/lpeek も可)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; WLDP_DEVICE_SECURITY_INFORMATION サイズ: 32 バイト(x64)
dim st, 8 ; 4byte整数×8(構造体サイズ 32 / 4 切り上げ)
; UnlockIdSize : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; UnlockId : BYTE* (+8, 8byte) qpoke st,8,値 / qpeek(st,8) ※IronHSPのみ。3.7/3.8は lpoke st,8,下位 : lpoke st,12,上位
; ManufacturerIDLength : DWORD (+16, 4byte) st.4 = 値 / 値 = st.4 (lpoke/lpeek も可)
; ManufacturerID : LPWSTR (+24, 8byte) qpoke st,24,値 / qpeek(st,24) ※IronHSPのみ。3.7/3.8は lpoke st,24,下位 : lpoke st,28,上位
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global WLDP_DEVICE_SECURITY_INFORMATION
#field int UnlockIdSize
#field intptr UnlockId
#field int ManufacturerIDLength
#field intptr ManufacturerID
#endstruct
stdim st, WLDP_DEVICE_SECURITY_INFORMATION ; NSTRUCT 変数を確保
st->UnlockIdSize = 100
mes "UnlockIdSize=" + st->UnlockIdSize