ホーム › NetworkManagement.Rras › RASAUTODIALENTRYW
RASAUTODIALENTRYW
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| dwSize | DWORD | 4 | +0 | +0 | この構造体のバイト単位のサイズ。 |
| dwFlags | DWORD | 4 | +4 | +4 | 自動ダイヤルエントリの属性フラグ。 |
| dwDialingLocation | DWORD | 4 | +8 | +8 | このエントリが関連付くTAPIのダイヤル場所(ロケーション)ID。 |
| szEntry | WCHAR | 514 | +12 | +12 | 自動ダイヤル時に使用する電話帳エントリ名(ワイド文字列)。 |
各言語での定義
#include <windows.h>
// RASAUTODIALENTRYW (x64 528 / x86 528 バイト)
typedef struct RASAUTODIALENTRYW {
DWORD dwSize;
DWORD dwFlags;
DWORD dwDialingLocation;
WCHAR szEntry[257];
} RASAUTODIALENTRYW;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RASAUTODIALENTRYW
{
public uint dwSize;
public uint dwFlags;
public uint dwDialingLocation;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 257)] public string szEntry;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RASAUTODIALENTRYW
Public dwSize As UInteger
Public dwFlags As UInteger
Public dwDialingLocation As UInteger
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=257)> Public szEntry As String
End Structureimport ctypes
from ctypes import wintypes
class RASAUTODIALENTRYW(ctypes.Structure):
_fields_ = [
("dwSize", wintypes.DWORD),
("dwFlags", wintypes.DWORD),
("dwDialingLocation", wintypes.DWORD),
("szEntry", ctypes.c_wchar * 257),
]#[repr(C)]
pub struct RASAUTODIALENTRYW {
pub dwSize: u32,
pub dwFlags: u32,
pub dwDialingLocation: u32,
pub szEntry: [u16; 257],
}import "golang.org/x/sys/windows"
type RASAUTODIALENTRYW struct {
dwSize uint32
dwFlags uint32
dwDialingLocation uint32
szEntry [257]uint16
}type
RASAUTODIALENTRYW = record
dwSize: DWORD;
dwFlags: DWORD;
dwDialingLocation: DWORD;
szEntry: array[0..256] of WideChar;
end;const RASAUTODIALENTRYW = extern struct {
dwSize: u32,
dwFlags: u32,
dwDialingLocation: u32,
szEntry: [257]u16,
};type
RASAUTODIALENTRYW {.bycopy.} = object
dwSize: uint32
dwFlags: uint32
dwDialingLocation: uint32
szEntry: array[257, uint16]struct RASAUTODIALENTRYW
{
uint dwSize;
uint dwFlags;
uint dwDialingLocation;
wchar[257] szEntry;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; RASAUTODIALENTRYW サイズ: 528 バイト(x64)
dim st, 132 ; 4byte整数×132(構造体サイズ 528 / 4 切り上げ)
; dwSize : DWORD (+0, 4byte) st.0 = 値 / 値 = st.0 (lpoke/lpeek も可)
; dwFlags : DWORD (+4, 4byte) st.1 = 値 / 値 = st.1 (lpoke/lpeek も可)
; dwDialingLocation : DWORD (+8, 4byte) st.2 = 値 / 値 = st.2 (lpoke/lpeek も可)
; szEntry : WCHAR (+12, 514byte) varptr(st)+12 を基点に操作(514byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global RASAUTODIALENTRYW
#field int dwSize
#field int dwFlags
#field int dwDialingLocation
#field wchar szEntry 257
#endstruct
stdim st, RASAUTODIALENTRYW ; NSTRUCT 変数を確保
st->dwSize = 100
mes "dwSize=" + st->dwSize