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

RASAUTODIALENTRYA

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

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

フィールド

フィールドサイズx64x86説明
dwSizeDWORD4+0+0この構造体のバイト単位のサイズ。
dwFlagsDWORD4+4+4自動ダイヤルエントリの属性フラグ。
dwDialingLocationDWORD4+8+8このエントリが関連付くTAPIのダイヤル場所(ロケーション)ID。
szEntryCHAR257+12+12自動ダイヤル時に使用する電話帳エントリ名(ANSI文字列)。

各言語での定義

#include <windows.h>

// RASAUTODIALENTRYA  (x64 272 / x86 272 バイト)
typedef struct RASAUTODIALENTRYA {
    DWORD dwSize;
    DWORD dwFlags;
    DWORD dwDialingLocation;
    CHAR szEntry[257];
} RASAUTODIALENTRYA;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RASAUTODIALENTRYA
{
    public uint dwSize;
    public uint dwFlags;
    public uint dwDialingLocation;
    [MarshalAs(UnmanagedType.ByValArray, SizeConst = 257)] public sbyte[] szEntry;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure RASAUTODIALENTRYA
    Public dwSize As UInteger
    Public dwFlags As UInteger
    Public dwDialingLocation As UInteger
    <MarshalAs(UnmanagedType.ByValArray, SizeConst:=257)> Public szEntry() As SByte
End Structure
import ctypes
from ctypes import wintypes

class RASAUTODIALENTRYA(ctypes.Structure):
    _fields_ = [
        ("dwSize", wintypes.DWORD),
        ("dwFlags", wintypes.DWORD),
        ("dwDialingLocation", wintypes.DWORD),
        ("szEntry", ctypes.c_byte * 257),
    ]
#[repr(C)]
pub struct RASAUTODIALENTRYA {
    pub dwSize: u32,
    pub dwFlags: u32,
    pub dwDialingLocation: u32,
    pub szEntry: [i8; 257],
}
import "golang.org/x/sys/windows"

type RASAUTODIALENTRYA struct {
	dwSize uint32
	dwFlags uint32
	dwDialingLocation uint32
	szEntry [257]int8
}
type
  RASAUTODIALENTRYA = record
    dwSize: DWORD;
    dwFlags: DWORD;
    dwDialingLocation: DWORD;
    szEntry: array[0..256] of Shortint;
  end;
const RASAUTODIALENTRYA = extern struct {
    dwSize: u32,
    dwFlags: u32,
    dwDialingLocation: u32,
    szEntry: [257]i8,
};
type
  RASAUTODIALENTRYA {.bycopy.} = object
    dwSize: uint32
    dwFlags: uint32
    dwDialingLocation: uint32
    szEntry: array[257, int8]
struct RASAUTODIALENTRYA
{
    uint dwSize;
    uint dwFlags;
    uint dwDialingLocation;
    byte[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 レイアウト)
; RASAUTODIALENTRYA サイズ: 272 バイト(x64)
dim st, 68    ; 4byte整数×68(構造体サイズ 272 / 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 : CHAR (+12, 257byte)  varptr(st)+12 を基点に操作(257byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。
; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global RASAUTODIALENTRYA
    #field int dwSize
    #field int dwFlags
    #field int dwDialingLocation
    #field byte szEntry 257
#endstruct

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