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