DlgDirSelectExW
関数シグネチャ
// USER32.dll (Unicode / -W)
#include <windows.h>
BOOL DlgDirSelectExW(
HWND hwndDlg,
LPWSTR lpString,
INT chCount,
INT idListBox
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| hwndDlg | HWND | in | リストボックスを含むダイアログボックスへのハンドルです。 |
| lpString | LPWSTR | out | 選択されたパスを受け取るバッファへのポインターです。 |
| chCount | INT | in | lpString が指すバッファの長さ( TCHAR 単位)です。 |
| idListBox | INT | in | ダイアログボックス内のリストボックスの識別子です。 |
戻り値の型: BOOL
公式ドキュメント
単一選択リストボックスから現在の選択項目を取得します。リストボックスは DlgDirList 関数によって設定されており、選択項目がドライブ文字、ファイル名、またはディレクトリ名であることを前提とします。(Unicode)
戻り値
型: BOOL
現在の選択項目がディレクトリ名である場合、戻り値は 0 以外になります。
現在の選択項目がディレクトリ名でない場合、戻り値は 0 になります。拡張エラー情報を取得するには、GetLastError を呼び出します。
解説(Remarks)
DlgDirSelectEx 関数は、選択項目を lpString パラメーターが指すバッファにコピーします。現在の選択項目がディレクトリ名またはドライブ文字の場合、DlgDirSelectEx は囲んでいる角かっこ(およびドライブ文字の場合はハイフン)を取り除き、名前または文字を新しいパスにそのまま挿入できる状態にします。選択項目が存在しない場合、 lpString は変更されません。 文字列がバッファと同じ長さ以上の場合、バッファには終端 null 文字を付加した切り詰められた文字列が格納されます。
DlgDirSelectEx は、リストボックスに LB_GETCURSEL および LB_GETTEXT メッセージを送信します。この関数は、リストボックスから複数のファイル名を返すことはできません。リストボックスは複数選択リストボックスであってはなりません。複数選択リストボックスの場合、この関数は 0 以外の値を返さず、 lpString は変更されません。
Windows 95 以降: DlgDirSelectExW は Microsoft Layer for Unicode によってサポートされます。これを使用するには、Microsoft Layer for Unicode on Windows Me/98/95 Systems に記載されているとおり、特定のファイルをアプリケーションに追加する必要があります。
例
例については、Creating a Directory Listing in a Single-selection List Box を参照してください。
winuser.h ヘッダーは DlgDirSelectEx をエイリアスとして定義しており、UNICODE プリプロセッサ定数の定義に基づいて、この関数の ANSI 版または Unicode 版を自動的に選択します。エンコーディング非依存のエイリアスの使用と、エンコーディング非依存でないコードを混在させると、不一致が生じ、コンパイルエラーまたは実行時エラーを引き起こす可能性があります。詳細については、Conventions for Function Prototypes を参照してください。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// USER32.dll (Unicode / -W)
#include <windows.h>
BOOL DlgDirSelectExW(
HWND hwndDlg,
LPWSTR lpString,
INT chCount,
INT idListBox
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
static extern bool DlgDirSelectExW(
IntPtr hwndDlg, // HWND
[MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpString, // LPWSTR out
int chCount, // INT
int idListBox // INT
);<DllImport("USER32.dll", CharSet:=CharSet.Unicode, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function DlgDirSelectExW(
hwndDlg As IntPtr, ' HWND
<MarshalAs(UnmanagedType.LPWStr)> lpString As System.Text.StringBuilder, ' LPWSTR out
chCount As Integer, ' INT
idListBox As Integer ' INT
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' hwndDlg : HWND
' lpString : LPWSTR out
' chCount : INT
' idListBox : INT
Declare PtrSafe Function DlgDirSelectExW Lib "user32" ( _
ByVal hwndDlg As LongPtr, _
ByVal lpString As LongPtr, _
ByVal chCount As Long, _
ByVal idListBox 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
DlgDirSelectExW = ctypes.windll.user32.DlgDirSelectExW
DlgDirSelectExW.restype = wintypes.BOOL
DlgDirSelectExW.argtypes = [
wintypes.HANDLE, # hwndDlg : HWND
wintypes.LPWSTR, # lpString : LPWSTR out
ctypes.c_int, # chCount : INT
ctypes.c_int, # idListBox : INT
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('USER32.dll')
DlgDirSelectExW = Fiddle::Function.new(
lib['DlgDirSelectExW'],
[
Fiddle::TYPE_VOIDP, # hwndDlg : HWND
Fiddle::TYPE_VOIDP, # lpString : LPWSTR out
Fiddle::TYPE_INT, # chCount : INT
Fiddle::TYPE_INT, # idListBox : INT
],
Fiddle::TYPE_INT)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"#[link(name = "user32")]
extern "system" {
fn DlgDirSelectExW(
hwndDlg: *mut core::ffi::c_void, // HWND
lpString: *mut u16, // LPWSTR out
chCount: i32, // INT
idListBox: i32 // INT
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern bool DlgDirSelectExW(IntPtr hwndDlg, [MarshalAs(UnmanagedType.LPWStr)] System.Text.StringBuilder lpString, int chCount, int idListBox);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_DlgDirSelectExW' -Namespace Win32 -PassThru
# $api::DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox)#uselib "USER32.dll"
#func global DlgDirSelectExW "DlgDirSelectExW" wptr, wptr, wptr, wptr
; DlgDirSelectExW hwndDlg, varptr(lpString), chCount, idListBox ; 戻り値は stat
; hwndDlg : HWND -> "wptr"
; lpString : LPWSTR out -> "wptr"
; chCount : INT -> "wptr"
; idListBox : INT -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "USER32.dll" #cfunc global DlgDirSelectExW "DlgDirSelectExW" sptr, var, int, int ; res = DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox) ; hwndDlg : HWND -> "sptr" ; lpString : LPWSTR out -> "var" ; chCount : INT -> "int" ; idListBox : INT -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "USER32.dll" #cfunc global DlgDirSelectExW "DlgDirSelectExW" sptr, sptr, int, int ; res = DlgDirSelectExW(hwndDlg, varptr(lpString), chCount, idListBox) ; hwndDlg : HWND -> "sptr" ; lpString : LPWSTR out -> "sptr" ; chCount : INT -> "int" ; idListBox : INT -> "int" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
; BOOL DlgDirSelectExW(HWND hwndDlg, LPWSTR lpString, INT chCount, INT idListBox) #uselib "USER32.dll" #cfunc global DlgDirSelectExW "DlgDirSelectExW" intptr, var, int, int ; res = DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox) ; hwndDlg : HWND -> "intptr" ; lpString : LPWSTR out -> "var" ; chCount : INT -> "int" ; idListBox : INT -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL DlgDirSelectExW(HWND hwndDlg, LPWSTR lpString, INT chCount, INT idListBox) #uselib "USER32.dll" #cfunc global DlgDirSelectExW "DlgDirSelectExW" intptr, intptr, int, int ; res = DlgDirSelectExW(hwndDlg, varptr(lpString), chCount, idListBox) ; hwndDlg : HWND -> "intptr" ; lpString : LPWSTR out -> "intptr" ; chCount : INT -> "int" ; idListBox : INT -> "int" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
user32 = windows.NewLazySystemDLL("USER32.dll")
procDlgDirSelectExW = user32.NewProc("DlgDirSelectExW")
)
// hwndDlg (HWND), lpString (LPWSTR out), chCount (INT), idListBox (INT)
r1, _, err := procDlgDirSelectExW.Call(
uintptr(hwndDlg),
uintptr(lpString),
uintptr(chCount),
uintptr(idListBox),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction DlgDirSelectExW(
hwndDlg: THandle; // HWND
lpString: PWideChar; // LPWSTR out
chCount: Integer; // INT
idListBox: Integer // INT
): BOOL; stdcall;
external 'USER32.dll' name 'DlgDirSelectExW';result := DllCall("USER32\DlgDirSelectExW"
, "Ptr", hwndDlg ; HWND
, "Ptr", lpString ; LPWSTR out
, "Int", chCount ; INT
, "Int", idListBox ; INT
, "Int") ; return: BOOL●DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox) = DLL("USER32.dll", "bool DlgDirSelectExW(void*, char*, int, int)")
# 呼び出し: DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox)
# hwndDlg : HWND -> "void*"
# lpString : LPWSTR out -> "char*"
# chCount : INT -> "int"
# idListBox : INT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。const std = @import("std");
extern "user32" fn DlgDirSelectExW(
hwndDlg: ?*anyopaque, // HWND
lpString: [*c]u16, // LPWSTR out
chCount: i32, // INT
idListBox: i32 // INT
) callconv(std.os.windows.WINAPI) i32;
// Unicode(-W): UTF-16LE のヌル終端バッファ([*c]const u16)を渡す。proc DlgDirSelectExW(
hwndDlg: pointer, # HWND
lpString: ptr uint16, # LPWSTR out
chCount: int32, # INT
idListBox: int32 # INT
): int32 {.importc: "DlgDirSelectExW", stdcall, dynlib: "USER32.dll".}
# Unicode(-W): WideCString は newWideCString("...") で生成。pragma(lib, "user32");
extern(Windows)
int DlgDirSelectExW(
void* hwndDlg, // HWND
wchar* lpString, // LPWSTR out
int chCount, // INT
int idListBox // INT
);ccall((:DlgDirSelectExW, "USER32.dll"), stdcall, Int32,
(Ptr{Cvoid}, Ptr{UInt16}, Int32, Int32),
hwndDlg, lpString, chCount, idListBox)
# hwndDlg : HWND -> Ptr{Cvoid}
# lpString : LPWSTR out -> Ptr{UInt16}
# chCount : INT -> Int32
# idListBox : INT -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
# Unicode(-W): Cwstring には transcode(UInt16, "...") 等で UTF-16 を渡す。local ffi = require("ffi")
ffi.cdef[[
int32_t DlgDirSelectExW(
void* hwndDlg,
uint16_t* lpString,
int32_t chCount,
int32_t idListBox);
]]
local user32 = ffi.load("user32")
-- user32.DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox)
-- hwndDlg : HWND
-- lpString : LPWSTR out
-- chCount : INT
-- idListBox : INT
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
-- Unicode(-W): uint16_t* には UTF-16LE のバッファ(ffi.new("uint16_t[?]", ...))を渡す。const koffi = require('koffi');
const lib = koffi.load('USER32.dll');
const DlgDirSelectExW = lib.func('__stdcall', 'DlgDirSelectExW', 'int32_t', ['void *', 'uint16_t *', 'int32_t', 'int32_t']);
// DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox)
// hwndDlg : HWND -> 'void *'
// lpString : LPWSTR out -> 'uint16_t *'
// chCount : INT -> 'int32_t'
// idListBox : INT -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("USER32.dll", {
DlgDirSelectExW: { parameters: ["pointer", "buffer", "i32", "i32"], result: "i32" },
});
// lib.symbols.DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox)
// hwndDlg : HWND -> "pointer"
// lpString : LPWSTR out -> "buffer"
// chCount : INT -> "i32"
// idListBox : INT -> "i32"
// 文字列は "buffer"。Unicode(-W) は new TextEncoder() ではなく UTF-16LE のバイト列(末尾に \x00\x00)を Uint8Array で渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t DlgDirSelectExW(
void* hwndDlg,
uint16_t* lpString,
int32_t chCount,
int32_t idListBox);
C, "USER32.dll");
// $ffi->DlgDirSelectExW(hwndDlg, lpString, chCount, idListBox);
// hwndDlg : HWND
// lpString : LPWSTR out
// chCount : INT
// idListBox : INT
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface User32 extends StdCallLibrary {
User32 INSTANCE = Native.load("user32", User32.class, W32APIOptions.UNICODE_OPTIONS);
boolean DlgDirSelectExW(
Pointer hwndDlg, // HWND
char[] lpString, // LPWSTR out
int chCount, // INT
int idListBox // INT
);
}
// Unicode(-W): WString(入力)/char[](出力)で UTF-16 をマーシャリング。@[Link("user32")]
lib LibUSER32
fun DlgDirSelectExW = DlgDirSelectExW(
hwndDlg : Void*, # HWND
lpString : UInt16*, # LPWSTR out
chCount : Int32, # INT
idListBox : Int32 # INT
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef DlgDirSelectExWNative = Int32 Function(Pointer<Void>, Pointer<Utf16>, Int32, Int32);
typedef DlgDirSelectExWDart = int Function(Pointer<Void>, Pointer<Utf16>, int, int);
final DlgDirSelectExW = DynamicLibrary.open('USER32.dll')
.lookupFunction<DlgDirSelectExWNative, DlgDirSelectExWDart>('DlgDirSelectExW');
// hwndDlg : HWND -> Pointer<Void>
// lpString : LPWSTR out -> Pointer<Utf16>
// chCount : INT -> Int32
// idListBox : INT -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function DlgDirSelectExW(
hwndDlg: THandle; // HWND
lpString: PWideChar; // LPWSTR out
chCount: Integer; // INT
idListBox: Integer // INT
): BOOL; stdcall;
external 'USER32.dll' name 'DlgDirSelectExW';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "DlgDirSelectExW"
c_DlgDirSelectExW :: Ptr () -> CWString -> Int32 -> Int32 -> IO CInt
-- hwndDlg : HWND -> Ptr ()
-- lpString : LPWSTR out -> CWString
-- chCount : INT -> Int32
-- idListBox : INT -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let dlgdirselectexw =
foreign "DlgDirSelectExW"
((ptr void) @-> (ptr uint16_t) @-> int32_t @-> int32_t @-> returning int32_t)
(* hwndDlg : HWND -> (ptr void) *)
(* lpString : LPWSTR out -> (ptr uint16_t) *)
(* chCount : INT -> int32_t *)
(* idListBox : INT -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library user32 (t "USER32.dll"))
(cffi:use-foreign-library user32)
(cffi:defcfun ("DlgDirSelectExW" dlg-dir-select-ex-w :convention :stdcall) :int32
(hwnd-dlg :pointer) ; HWND
(lp-string :pointer) ; LPWSTR out
(ch-count :int32) ; INT
(id-list-box :int32)) ; INT
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $DlgDirSelectExW = Win32::API::More->new('USER32',
'BOOL DlgDirSelectExW(HANDLE hwndDlg, LPWSTR lpString, int chCount, int idListBox)');
# my $ret = $DlgDirSelectExW->Call($hwndDlg, $lpString, $chCount, $idListBox);
# hwndDlg : HWND -> HANDLE
# lpString : LPWSTR out -> LPWSTR
# chCount : INT -> int
# idListBox : INT -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。
# Unicode(-W): LPCWSTR/LPWSTR は Win32::API が UTF-16 変換を行う。関連項目
- f DlgDirSelectExA (ANSI版) — リストボックスで選択中のファイルやディレクトリ名を取得する(ANSI版)。
- f DlgDirListW — ディレクトリ内容をダイアログのリストボックスに一覧表示する(Unicode版)。
- f DlgDirListComboBoxW — ディレクトリ内容をダイアログのコンボボックスに一覧表示する(Unicode版)。
- f DlgDirSelectComboBoxExW — コンボボックスで選択中のファイルやディレクトリ名を取得する(Unicode版)。