ホーム › NetworkManagement.QoS › RSVP_POLICY
RSVP_POLICY
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| Len | WORD | 2 | +0 | +0 | このポリシー要素のバイト長。 |
| Type | WORD | 2 | +2 | +2 | ポリシー要素の種別を示す値。 |
| Info | BYTE | 4 | +4 | +4 | ポリシー固有情報の先頭バイト。可変長配列の起点となる。 |
各言語での定義
#include <windows.h>
// RSVP_POLICY (x64 8 / x86 8 バイト)
typedef struct RSVP_POLICY {
WORD Len;
WORD Type;
BYTE Info[4];
} RSVP_POLICY;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RSVP_POLICY
{
public ushort Len;
public ushort Type;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public byte[] Info;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RSVP_POLICY
Public Len As UShort
Public Type As UShort
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> Public Info() As Byte
End Structureimport ctypes
from ctypes import wintypes
class RSVP_POLICY(ctypes.Structure):
_fields_ = [
("Len", ctypes.c_ushort),
("Type", ctypes.c_ushort),
("Info", ctypes.c_ubyte * 4),
]#[repr(C)]
pub struct RSVP_POLICY {
pub Len: u16,
pub Type: u16,
pub Info: [u8; 4],
}import "golang.org/x/sys/windows"
type RSVP_POLICY struct {
Len uint16
Type uint16
Info [4]byte
}type
RSVP_POLICY = record
Len: Word;
Type: Word;
Info: array[0..3] of Byte;
end;const RSVP_POLICY = extern struct {
Len: u16,
Type: u16,
Info: [4]u8,
};type
RSVP_POLICY {.bycopy.} = object
Len: uint16
Type: uint16
Info: array[4, uint8]struct RSVP_POLICY
{
ushort Len;
ushort Type;
ubyte[4] Info;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; RSVP_POLICY サイズ: 8 バイト(x64)
dim st, 2 ; 4byte整数×2(構造体サイズ 8 / 4 切り上げ)
; Len : WORD (+0, 2byte) wpoke st,0,値 / 値 = wpeek(st,0)
; Type : WORD (+2, 2byte) wpoke st,2,値 / 値 = wpeek(st,2)
; Info : BYTE (+4, 4byte) varptr(st)+4 を基点に操作(4byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global RSVP_POLICY
#field short Len
#field short Type
#field byte Info 4
#endstruct
stdim st, RSVP_POLICY ; NSTRUCT 変数を確保
st->Len = 100
mes "Len=" + st->Len