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

GopherFindFirstFileW

関数
Gopherサーバーの項目検索を開始し最初の結果を得る(Unicode版)。
DLLWININET.dll文字セットUnicode (-W)呼出規約winapiSetLastErrorあり対応OSWindows 2000 以降

シグネチャ

// WININET.dll  (Unicode / -W)
#include <windows.h>

void* GopherFindFirstFileW(
    void* hConnect,
    LPCWSTR lpszLocator,   // optional
    LPCWSTR lpszSearchString,   // optional
    GOPHER_FIND_DATAW* lpFindData,   // optional
    DWORD dwFlags,
    UINT_PTR dwContext   // optional
);

パラメーター

名前方向
hConnectvoid*in
lpszLocatorLPCWSTRinoptional
lpszSearchStringLPCWSTRinoptional
lpFindDataGOPHER_FIND_DATAW*outoptional
dwFlagsDWORDin
dwContextUINT_PTRinoptional

戻り値の型: void*

各言語での呼び出し定義

// WININET.dll  (Unicode / -W)
#include <windows.h>

void* GopherFindFirstFileW(
    void* hConnect,
    LPCWSTR lpszLocator,   // optional
    LPCWSTR lpszSearchString,   // optional
    GOPHER_FIND_DATAW* lpFindData,   // optional
    DWORD dwFlags,
    UINT_PTR dwContext   // optional
);
[DllImport("WININET.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
static extern IntPtr GopherFindFirstFileW(
    IntPtr hConnect,   // void*
    [MarshalAs(UnmanagedType.LPWStr)] string lpszLocator,   // LPCWSTR optional
    [MarshalAs(UnmanagedType.LPWStr)] string lpszSearchString,   // LPCWSTR optional
    IntPtr lpFindData,   // GOPHER_FIND_DATAW* optional, out
    uint dwFlags,   // DWORD
    UIntPtr dwContext   // UINT_PTR optional
);
<DllImport("WININET.dll", CharSet:=CharSet.Unicode, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function GopherFindFirstFileW(
    hConnect As IntPtr,   ' void*
    <MarshalAs(UnmanagedType.LPWStr)> lpszLocator As String,   ' LPCWSTR optional
    <MarshalAs(UnmanagedType.LPWStr)> lpszSearchString As String,   ' LPCWSTR optional
    lpFindData As IntPtr,   ' GOPHER_FIND_DATAW* optional, out
    dwFlags As UInteger,   ' DWORD
    dwContext As UIntPtr   ' UINT_PTR optional
) As IntPtr
End Function
' hConnect : void*
' lpszLocator : LPCWSTR optional
' lpszSearchString : LPCWSTR optional
' lpFindData : GOPHER_FIND_DATAW* optional, out
' dwFlags : DWORD
' dwContext : UINT_PTR optional
Declare PtrSafe Function GopherFindFirstFileW Lib "wininet" ( _
    ByVal hConnect As LongPtr, _
    ByVal lpszLocator As LongPtr, _
    ByVal lpszSearchString As LongPtr, _
    ByVal lpFindData As LongPtr, _
    ByVal dwFlags As Long, _
    ByVal dwContext As LongPtr) As LongPtr
' 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

GopherFindFirstFileW = ctypes.windll.wininet.GopherFindFirstFileW
GopherFindFirstFileW.restype = ctypes.c_void_p
GopherFindFirstFileW.argtypes = [
    ctypes.POINTER(None),  # hConnect : void*
    wintypes.LPCWSTR,  # lpszLocator : LPCWSTR optional
    wintypes.LPCWSTR,  # lpszSearchString : LPCWSTR optional
    ctypes.c_void_p,  # lpFindData : GOPHER_FIND_DATAW* optional, out
    wintypes.DWORD,  # dwFlags : DWORD
    ctypes.c_size_t,  # dwContext : UINT_PTR optional
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('WININET.dll')
GopherFindFirstFileW = Fiddle::Function.new(
  lib['GopherFindFirstFileW'],
  [
    Fiddle::TYPE_VOIDP,  # hConnect : void*
    Fiddle::TYPE_VOIDP,  # lpszLocator : LPCWSTR optional
    Fiddle::TYPE_VOIDP,  # lpszSearchString : LPCWSTR optional
    Fiddle::TYPE_VOIDP,  # lpFindData : GOPHER_FIND_DATAW* optional, out
    -Fiddle::TYPE_INT,  # dwFlags : DWORD
    Fiddle::TYPE_UINTPTR_T,  # dwContext : UINT_PTR optional
  ],
  Fiddle::TYPE_VOIDP)
# Wide strings: pass str.encode("UTF-16LE") + "\x00\x00"
#[link(name = "wininet")]
extern "system" {
    fn GopherFindFirstFileW(
        hConnect: *mut (),  // void*
        lpszLocator: *const u16,  // LPCWSTR optional
        lpszSearchString: *const u16,  // LPCWSTR optional
        lpFindData: *mut GOPHER_FIND_DATAW,  // GOPHER_FIND_DATAW* optional, out
        dwFlags: u32,  // DWORD
        dwContext: usize  // UINT_PTR optional
    ) -> *mut ();
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("WININET.dll", CharSet = CharSet.Unicode, SetLastError = true)]
public static extern IntPtr GopherFindFirstFileW(IntPtr hConnect, [MarshalAs(UnmanagedType.LPWStr)] string lpszLocator, [MarshalAs(UnmanagedType.LPWStr)] string lpszSearchString, IntPtr lpFindData, uint dwFlags, UIntPtr dwContext);
"@
$api = Add-Type -MemberDefinition $sig -Name 'WININET_GopherFindFirstFileW' -Namespace Win32 -PassThru
# $api::GopherFindFirstFileW(hConnect, lpszLocator, lpszSearchString, lpFindData, dwFlags, dwContext)
#uselib "WININET.dll"
#func global GopherFindFirstFileW "GopherFindFirstFileW" wptr, wptr, wptr, wptr, wptr, wptr
; GopherFindFirstFileW hConnect, lpszLocator, lpszSearchString, varptr(lpFindData), dwFlags, dwContext   ; 戻り値は stat
; hConnect : void* -> "wptr"
; lpszLocator : LPCWSTR optional -> "wptr"
; lpszSearchString : LPCWSTR optional -> "wptr"
; lpFindData : GOPHER_FIND_DATAW* optional, out -> "wptr"
; dwFlags : DWORD -> "wptr"
; dwContext : UINT_PTR optional -> "wptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "WININET.dll"
#cfunc global GopherFindFirstFileW "GopherFindFirstFileW" sptr, wstr, wstr, var, int, sptr
; res = GopherFindFirstFileW(hConnect, lpszLocator, lpszSearchString, lpFindData, dwFlags, dwContext)
; hConnect : void* -> "sptr"
; lpszLocator : LPCWSTR optional -> "wstr"
; lpszSearchString : LPCWSTR optional -> "wstr"
; lpFindData : GOPHER_FIND_DATAW* optional, out -> "var"
; dwFlags : DWORD -> "int"
; dwContext : UINT_PTR optional -> "sptr"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; void* GopherFindFirstFileW(void* hConnect, LPCWSTR lpszLocator, LPCWSTR lpszSearchString, GOPHER_FIND_DATAW* lpFindData, DWORD dwFlags, UINT_PTR dwContext)
#uselib "WININET.dll"
#cfunc global GopherFindFirstFileW "GopherFindFirstFileW" intptr, wstr, wstr, var, int, intptr
; res = GopherFindFirstFileW(hConnect, lpszLocator, lpszSearchString, lpFindData, dwFlags, dwContext)
; hConnect : void* -> "intptr"
; lpszLocator : LPCWSTR optional -> "wstr"
; lpszSearchString : LPCWSTR optional -> "wstr"
; lpFindData : GOPHER_FIND_DATAW* optional, out -> "var"
; dwFlags : DWORD -> "int"
; dwContext : UINT_PTR optional -> "intptr"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	wininet = windows.NewLazySystemDLL("WININET.dll")
	procGopherFindFirstFileW = wininet.NewProc("GopherFindFirstFileW")
)

// hConnect (void*), lpszLocator (LPCWSTR optional), lpszSearchString (LPCWSTR optional), lpFindData (GOPHER_FIND_DATAW* optional, out), dwFlags (DWORD), dwContext (UINT_PTR optional)
r1, _, err := procGopherFindFirstFileW.Call(
	uintptr(hConnect),
	uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpszLocator))),
	uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(lpszSearchString))),
	uintptr(lpFindData),
	uintptr(dwFlags),
	uintptr(dwContext),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // void*
function GopherFindFirstFileW(
  hConnect: Pointer;   // void*
  lpszLocator: PWideChar;   // LPCWSTR optional
  lpszSearchString: PWideChar;   // LPCWSTR optional
  lpFindData: Pointer;   // GOPHER_FIND_DATAW* optional, out
  dwFlags: DWORD;   // DWORD
  dwContext: NativeUInt   // UINT_PTR optional
): Pointer; stdcall;
  external 'WININET.dll' name 'GopherFindFirstFileW';
result := DllCall("WININET\GopherFindFirstFileW"
    , "Ptr", hConnect   ; void*
    , "WStr", lpszLocator   ; LPCWSTR optional
    , "WStr", lpszSearchString   ; LPCWSTR optional
    , "Ptr", lpFindData   ; GOPHER_FIND_DATAW* optional, out
    , "UInt", dwFlags   ; DWORD
    , "UPtr", dwContext   ; UINT_PTR optional
    , "Ptr")   ; return: void*
●GopherFindFirstFileW(hConnect, lpszLocator, lpszSearchString, lpFindData, dwFlags, dwContext) = DLL("WININET.dll", "void* GopherFindFirstFileW(void*, char*, char*, void*, dword, int)")
# 呼び出し: GopherFindFirstFileW(hConnect, lpszLocator, lpszSearchString, lpFindData, dwFlags, dwContext)
# hConnect : void* -> "void*"
# lpszLocator : LPCWSTR optional -> "char*"
# lpszSearchString : LPCWSTR optional -> "char*"
# lpFindData : GOPHER_FIND_DATAW* optional, out -> "void*"
# dwFlags : DWORD -> "dword"
# dwContext : UINT_PTR optional -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
# ※-W(Unicode)関数。なでしこ1はANSIのため -A 版の利用を推奨。