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

DHCP_SUPER_SCOPE_TABLE_ENTRY

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

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

フィールド

フィールドサイズx64x86説明
SubnetAddressDWORD4+0+0スーパースコープに属するサブネットのアドレスをDWORDで示す。
SuperScopeNumberDWORD4+4+4所属するスーパースコープの番号を示す。
NextInSuperScopeDWORD4+8+8同一スーパースコープ内の次サブネット番号を示す。
SuperScopeNameLPWSTR8/4+16+12スーパースコープの名前を示すワイド文字列。NULL可。

各言語での定義

#include <windows.h>

// DHCP_SUPER_SCOPE_TABLE_ENTRY  (x64 24 / x86 16 バイト)
typedef struct DHCP_SUPER_SCOPE_TABLE_ENTRY {
    DWORD SubnetAddress;
    DWORD SuperScopeNumber;
    DWORD NextInSuperScope;
    LPWSTR SuperScopeName;
} DHCP_SUPER_SCOPE_TABLE_ENTRY;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct DHCP_SUPER_SCOPE_TABLE_ENTRY
{
    public uint SubnetAddress;
    public uint SuperScopeNumber;
    public uint NextInSuperScope;
    public IntPtr SuperScopeName;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure DHCP_SUPER_SCOPE_TABLE_ENTRY
    Public SubnetAddress As UInteger
    Public SuperScopeNumber As UInteger
    Public NextInSuperScope As UInteger
    Public SuperScopeName As IntPtr
End Structure
import ctypes
from ctypes import wintypes

class DHCP_SUPER_SCOPE_TABLE_ENTRY(ctypes.Structure):
    _fields_ = [
        ("SubnetAddress", wintypes.DWORD),
        ("SuperScopeNumber", wintypes.DWORD),
        ("NextInSuperScope", wintypes.DWORD),
        ("SuperScopeName", ctypes.c_void_p),
    ]
#[repr(C)]
pub struct DHCP_SUPER_SCOPE_TABLE_ENTRY {
    pub SubnetAddress: u32,
    pub SuperScopeNumber: u32,
    pub NextInSuperScope: u32,
    pub SuperScopeName: *mut core::ffi::c_void,
}
import "golang.org/x/sys/windows"

type DHCP_SUPER_SCOPE_TABLE_ENTRY struct {
	SubnetAddress uint32
	SuperScopeNumber uint32
	NextInSuperScope uint32
	SuperScopeName uintptr
}
type
  DHCP_SUPER_SCOPE_TABLE_ENTRY = record
    SubnetAddress: DWORD;
    SuperScopeNumber: DWORD;
    NextInSuperScope: DWORD;
    SuperScopeName: Pointer;
  end;
const DHCP_SUPER_SCOPE_TABLE_ENTRY = extern struct {
    SubnetAddress: u32,
    SuperScopeNumber: u32,
    NextInSuperScope: u32,
    SuperScopeName: ?*anyopaque,
};
type
  DHCP_SUPER_SCOPE_TABLE_ENTRY {.bycopy.} = object
    SubnetAddress: uint32
    SuperScopeNumber: uint32
    NextInSuperScope: uint32
    SuperScopeName: pointer
struct DHCP_SUPER_SCOPE_TABLE_ENTRY
{
    uint SubnetAddress;
    uint SuperScopeNumber;
    uint NextInSuperScope;
    void* SuperScopeName;
}

HSP用 定義

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

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

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