Win32 API 日本語リファレンス
ホームNetworking.Clustering › CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT

CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT

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

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

フィールド

フィールドサイズx64x86説明
FileServerNameWCHAR520+0+0作成されたインフラストラクチャファイルサーバーの名前を示すWCHAR固定長文字列である。

各言語での定義

#include <windows.h>

// CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT  (x64 520 / x86 520 バイト)
typedef struct CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT {
    WCHAR FileServerName[260];
} CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT;
using System;
using System.Runtime.InteropServices;

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT
{
    [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)] public string FileServerName;
}
Imports System.Runtime.InteropServices

<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT
    <MarshalAs(UnmanagedType.ByValTStr, SizeConst:=260)> Public FileServerName As String
End Structure
import ctypes
from ctypes import wintypes

class CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT(ctypes.Structure):
    _fields_ = [
        ("FileServerName", ctypes.c_wchar * 260),
    ]
#[repr(C)]
pub struct CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT {
    pub FileServerName: [u16; 260],
}
import "golang.org/x/sys/windows"

type CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT struct {
	FileServerName [260]uint16
}
type
  CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT = record
    FileServerName: array[0..259] of WideChar;
  end;
const CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT = extern struct {
    FileServerName: [260]u16,
};
type
  CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT {.bycopy.} = object
    FileServerName: array[260, uint16]
struct CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT
{
    wchar[260] FileServerName;
}

HSP用 定義

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

; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT サイズ: 520 バイト(x64)
dim st, 130    ; 4byte整数×130(構造体サイズ 520 / 4 切り上げ)
; FileServerName : WCHAR (+0, 520byte)  varptr(st)+0 を基点に操作(520byte:入れ子/配列)
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。
; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT
    #field wchar FileServerName 260
#endstruct

stdim st, CLUS_CREATE_INFRASTRUCTURE_FILESERVER_OUTPUT        ; NSTRUCT 変数を確保