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