Win32 API 日本語リファレンス
ホームNetworkManagement.WiFi › DOT11_RECV_SENSITIVITY

DOT11_RECV_SENSITIVITY

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

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

フィールド

フィールドサイズx64x86説明
ucDataRateBYTE1+0+0対象のデータレート値を表す。
lRSSIMinINT4+4+4当該レートで受信可能な最小 RSSI を表す(dBm)。
lRSSIMaxINT4+8+8当該レートで受信可能な最大 RSSI を表す(dBm)。

各言語での定義

#include <windows.h>

// DOT11_RECV_SENSITIVITY  (x64 12 / x86 12 バイト)
typedef struct DOT11_RECV_SENSITIVITY {
    BYTE ucDataRate;
    INT lRSSIMin;
    INT lRSSIMax;
} DOT11_RECV_SENSITIVITY;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct DOT11_RECV_SENSITIVITY
{
    public byte ucDataRate;
    public int lRSSIMin;
    public int lRSSIMax;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure DOT11_RECV_SENSITIVITY
    Public ucDataRate As Byte
    Public lRSSIMin As Integer
    Public lRSSIMax As Integer
End Structure
import ctypes
from ctypes import wintypes

class DOT11_RECV_SENSITIVITY(ctypes.Structure):
    _fields_ = [
        ("ucDataRate", ctypes.c_ubyte),
        ("lRSSIMin", ctypes.c_int),
        ("lRSSIMax", ctypes.c_int),
    ]
#[repr(C)]
pub struct DOT11_RECV_SENSITIVITY {
    pub ucDataRate: u8,
    pub lRSSIMin: i32,
    pub lRSSIMax: i32,
}
import "golang.org/x/sys/windows"

type DOT11_RECV_SENSITIVITY struct {
	ucDataRate byte
	lRSSIMin int32
	lRSSIMax int32
}
type
  DOT11_RECV_SENSITIVITY = record
    ucDataRate: Byte;
    lRSSIMin: Integer;
    lRSSIMax: Integer;
  end;
const DOT11_RECV_SENSITIVITY = extern struct {
    ucDataRate: u8,
    lRSSIMin: i32,
    lRSSIMax: i32,
};
type
  DOT11_RECV_SENSITIVITY {.bycopy.} = object
    ucDataRate: uint8
    lRSSIMin: int32
    lRSSIMax: int32
struct DOT11_RECV_SENSITIVITY
{
    ubyte ucDataRate;
    int lRSSIMin;
    int lRSSIMax;
}

HSP用 定義

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

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

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