ホーム › System.Rpc › NDR64_RANGE_FORMAT
NDR64_RANGE_FORMAT
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| FormatCode | BYTE | 1 | +0 | +0 | この記述がレンジ(範囲)型であることを示すフォーマットコード。 |
| RangeType | BYTE | 1 | +1 | +1 | 範囲が適用される基底型を示すコード。 |
| Reserved | WORD | 2 | +2 | +2 | 予約フィールド(WORD)。将来の拡張用。 |
| MinValue | LONGLONG | 8 | +8 | +8 | 許容される最小値(LONGLONG)。範囲下限を表す。 |
| MaxValue | LONGLONG | 8 | +16 | +16 | 許容される最大値(LONGLONG)。範囲上限を表す。 |
各言語での定義
#include <windows.h>
// NDR64_RANGE_FORMAT (x64 24 / x86 24 バイト)
typedef struct NDR64_RANGE_FORMAT {
BYTE FormatCode;
BYTE RangeType;
WORD Reserved;
LONGLONG MinValue;
LONGLONG MaxValue;
} NDR64_RANGE_FORMAT;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct NDR64_RANGE_FORMAT
{
public byte FormatCode;
public byte RangeType;
public ushort Reserved;
public long MinValue;
public long MaxValue;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure NDR64_RANGE_FORMAT
Public FormatCode As Byte
Public RangeType As Byte
Public Reserved As UShort
Public MinValue As Long
Public MaxValue As Long
End Structureimport ctypes
from ctypes import wintypes
class NDR64_RANGE_FORMAT(ctypes.Structure):
_fields_ = [
("FormatCode", ctypes.c_ubyte),
("RangeType", ctypes.c_ubyte),
("Reserved", ctypes.c_ushort),
("MinValue", ctypes.c_longlong),
("MaxValue", ctypes.c_longlong),
]#[repr(C)]
pub struct NDR64_RANGE_FORMAT {
pub FormatCode: u8,
pub RangeType: u8,
pub Reserved: u16,
pub MinValue: i64,
pub MaxValue: i64,
}import "golang.org/x/sys/windows"
type NDR64_RANGE_FORMAT struct {
FormatCode byte
RangeType byte
Reserved uint16
MinValue int64
MaxValue int64
}type
NDR64_RANGE_FORMAT = record
FormatCode: Byte;
RangeType: Byte;
Reserved: Word;
MinValue: Int64;
MaxValue: Int64;
end;const NDR64_RANGE_FORMAT = extern struct {
FormatCode: u8,
RangeType: u8,
Reserved: u16,
MinValue: i64,
MaxValue: i64,
};type
NDR64_RANGE_FORMAT {.bycopy.} = object
FormatCode: uint8
RangeType: uint8
Reserved: uint16
MinValue: int64
MaxValue: int64struct NDR64_RANGE_FORMAT
{
ubyte FormatCode;
ubyte RangeType;
ushort Reserved;
long MinValue;
long MaxValue;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; NDR64_RANGE_FORMAT サイズ: 24 バイト(x64)
dim st, 6 ; 4byte整数×6(構造体サイズ 24 / 4 切り上げ)
; FormatCode : BYTE (+0, 1byte) poke st,0,値 / 値 = peek(st,0)
; RangeType : BYTE (+1, 1byte) poke st,1,値 / 値 = peek(st,1)
; Reserved : WORD (+2, 2byte) wpoke st,2,値 / 値 = wpeek(st,2)
; MinValue : LONGLONG (+8, 8byte) qpoke st,8,値 / qpeek(st,8) ※IronHSPのみ。3.7/3.8は lpoke st,8,下位 : lpoke st,12,上位
; MaxValue : LONGLONG (+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 NDR64_RANGE_FORMAT
#field byte FormatCode
#field byte RangeType
#field short Reserved
#field int64 MinValue
#field int64 MaxValue
#endstruct
stdim st, NDR64_RANGE_FORMAT ; NSTRUCT 変数を確保
st->FormatCode = 100
mes "FormatCode=" + st->FormatCode