ホーム › System.WindowsProgramming › GetProfileSectionW
GetProfileSectionW
関数win.iniの指定セクション全体をUnicodeで取得する旧式関数。
シグネチャ
// KERNEL32.dll (Unicode / -W)
#include <windows.h>
DWORD GetProfileSectionW(
LPCWSTR lpAppName,
LPWSTR lpReturnedString, // optional
DWORD nSize
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| lpAppName | LPCWSTR | in |
| lpReturnedString | LPWSTR | outoptional |
| nSize | DWORD | in |
戻り値の型: DWORD
各言語での呼び出し定義
// KERNEL32.dll (Unicode / -W)
#include <windows.h>
DWORD GetProfileSectionW(
LPCWSTR lpAppName,
LPWSTR lpReturnedString, // optional
DWORD nSize
);[DllImport("KERNEL32.dll", CharSet = CharSet.Unicode, ExactSpelling = true)]
static extern uint GetProfileSectionW(
[MarshalAs(UnmanagedType.LPWStr)] string lpAppName, // LPCWSTR
[MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpReturnedString, // LPWSTR optional, out
uint nSize // DWORD
);<DllImport("KERNEL32.dll", CharSet:=CharSet.Unicode, ExactSpelling:=True)>
Public Shared Function GetProfileSectionW(
<MarshalAs(UnmanagedType.LPWStr)> lpAppName As String, ' LPCWSTR
<MarshalAs(UnmanagedType.LPWStr)> lpReturnedString As System.Text.StringBuilder, ' LPWSTR optional, out
nSize As UInteger ' DWORD
) As UInteger
End Function' lpAppName : LPCWSTR
' lpReturnedString : LPWSTR optional, out
' nSize : DWORD
Declare PtrSafe Function GetProfileSectionW Lib "kernel32" ( _
ByVal lpAppName As LongPtr, _
ByVal lpReturnedString As LongPtr, _
ByVal nSize As Long) As Long
' Unicode(W): 文字列は ByVal As LongPtr とし StrPtr(unicodeStr) を渡す
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
GetProfileSectionW = ctypes.windll.kernel32.GetProfileSectionW
GetProfileSectionW.restype = wintypes.DWORD
GetProfileSectionW.argtypes = [
wintypes.LPCWSTR, # lpAppName : LPCWSTR
wintypes.LPWSTR, # lpReturnedString : LPWSTR optional, out
wintypes.DWORD, # nSize : DWORD
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('KERNEL32.dll')
GetProfileSectionW = Fiddle::Function.new(
lib['GetProfileSectionW'],
[
Fiddle::TYPE_VOIDP, # lpAppName : LPCWSTR
Fiddle::TYPE_VOIDP, # lpReturnedString : LPWSTR optional, out
-Fiddle::TYPE_INT, # nSize : DWORD
],
-Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "kernel32")]
extern "system" {
fn GetProfileSectionW(
lpAppName: *const u16, // LPCWSTR
lpReturnedString: *mut u16, // LPWSTR optional, out
nSize: u32 // DWORD
) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[DllImport("KERNEL32.dll", CharSet = CharSet.Unicode)]
public static extern uint GetProfileSectionW([MarshalAs(UnmanagedType.LPWStr)] string lpAppName, [MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpReturnedString, uint nSize);
"@
$api = Add-Type -MemberDefinition $sig -Name 'KERNEL32_GetProfileSectionW' -Namespace Win32 -PassThru
# $api::GetProfileSectionW(lpAppName, lpReturnedString, nSize)#uselib "KERNEL32.dll"
#func global GetProfileSectionW "GetProfileSectionW" wptr, wptr, wptr
; GetProfileSectionW lpAppName, varptr(lpReturnedString), nSize ; 戻り値は stat
; lpAppName : LPCWSTR -> "wptr"
; lpReturnedString : LPWSTR optional, out -> "wptr"
; nSize : DWORD -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "KERNEL32.dll" #cfunc global GetProfileSectionW "GetProfileSectionW" wstr, var, int ; res = GetProfileSectionW(lpAppName, lpReturnedString, nSize) ; lpAppName : LPCWSTR -> "wstr" ; lpReturnedString : LPWSTR optional, out -> "var" ; nSize : DWORD -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "KERNEL32.dll" #cfunc global GetProfileSectionW "GetProfileSectionW" wstr, sptr, int ; res = GetProfileSectionW(lpAppName, varptr(lpReturnedString), nSize) ; lpAppName : LPCWSTR -> "wstr" ; lpReturnedString : LPWSTR optional, out -> "sptr" ; nSize : DWORD -> "int" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; DWORD GetProfileSectionW(LPCWSTR lpAppName, LPWSTR lpReturnedString, DWORD nSize) #uselib "KERNEL32.dll" #cfunc global GetProfileSectionW "GetProfileSectionW" wstr, var, int ; res = GetProfileSectionW(lpAppName, lpReturnedString, nSize) ; lpAppName : LPCWSTR -> "wstr" ; lpReturnedString : LPWSTR optional, out -> "var" ; nSize : DWORD -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; DWORD GetProfileSectionW(LPCWSTR lpAppName, LPWSTR lpReturnedString, DWORD nSize) #uselib "KERNEL32.dll" #cfunc global GetProfileSectionW "GetProfileSectionW" wstr, intptr, int ; res = GetProfileSectionW(lpAppName, varptr(lpReturnedString), nSize) ; lpAppName : LPCWSTR -> "wstr" ; lpReturnedString : LPWSTR optional, out -> "intptr" ; nSize : DWORD -> "int" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
kernel32 = windows.NewLazySystemDLL("KERNEL32.dll")
procGetProfileSectionW = kernel32.NewProc("GetProfileSectionW")
)
// lpAppName (LPCWSTR), lpReturnedString (LPWSTR optional, out), nSize (DWORD)
r1, _, err := procGetProfileSectionW.Call(
uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpAppName))),
uintptr(lpReturnedString),
uintptr(nSize),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // DWORDfunction GetProfileSectionW(
lpAppName: PWideChar; // LPCWSTR
lpReturnedString: PWideChar; // LPWSTR optional, out
nSize: DWORD // DWORD
): DWORD; stdcall;
external 'KERNEL32.dll' name 'GetProfileSectionW';result := DllCall("KERNEL32\GetProfileSectionW"
, "WStr", lpAppName ; LPCWSTR
, "Ptr", lpReturnedString ; LPWSTR optional, out
, "UInt", nSize ; DWORD
, "UInt") ; return: DWORD●GetProfileSectionW(lpAppName, lpReturnedString, nSize) = DLL("KERNEL32.dll", "dword GetProfileSectionW(char*, char*, dword)")
# 呼び出し: GetProfileSectionW(lpAppName, lpReturnedString, nSize)
# lpAppName : LPCWSTR -> "char*"
# lpReturnedString : LPWSTR optional, out -> "char*"
# nSize : DWORD -> "dword"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。