Win32 API 日本語リファレンス
ホームSystem.Com.StructuredStorage › StgIsStorageFile

StgIsStorageFile

関数
指定ファイルが複合ドキュメント形式かどうかを判定する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

// OLE32.dll
#include <windows.h>

HRESULT StgIsStorageFile(
    LPCWSTR pwcsName
);

パラメーター

名前方向説明
pwcsNameLPCWSTRin判定対象ファイルのパス名(ワイド文字列)。複合ファイルかどうかを判定する。

戻り値の型: HRESULT

各言語での呼び出し定義

// OLE32.dll
#include <windows.h>

HRESULT StgIsStorageFile(
    LPCWSTR pwcsName
);
[DllImport("OLE32.dll", ExactSpelling = true)]
static extern int StgIsStorageFile(
    [MarshalAs(UnmanagedType.LPWStr)] string pwcsName   // LPCWSTR
);
<DllImport("OLE32.dll", ExactSpelling:=True)>
Public Shared Function StgIsStorageFile(
    <MarshalAs(UnmanagedType.LPWStr)> pwcsName As String   ' LPCWSTR
) As Integer
End Function
' pwcsName : LPCWSTR
Declare PtrSafe Function StgIsStorageFile Lib "ole32" ( _
    ByVal pwcsName As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

StgIsStorageFile = ctypes.windll.ole32.StgIsStorageFile
StgIsStorageFile.restype = ctypes.c_int
StgIsStorageFile.argtypes = [
    wintypes.LPCWSTR,  # pwcsName : LPCWSTR
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('OLE32.dll')
StgIsStorageFile = Fiddle::Function.new(
  lib['StgIsStorageFile'],
  [
    Fiddle::TYPE_VOIDP,  # pwcsName : LPCWSTR
  ],
  Fiddle::TYPE_INT)
#[link(name = "ole32")]
extern "system" {
    fn StgIsStorageFile(
        pwcsName: *const u16  // LPCWSTR
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("OLE32.dll")]
public static extern int StgIsStorageFile([MarshalAs(UnmanagedType.LPWStr)] string pwcsName);
"@
$api = Add-Type -MemberDefinition $sig -Name 'OLE32_StgIsStorageFile' -Namespace Win32 -PassThru
# $api::StgIsStorageFile(pwcsName)
#uselib "OLE32.dll"
#func global StgIsStorageFile "StgIsStorageFile" sptr
; StgIsStorageFile pwcsName   ; 戻り値は stat
; pwcsName : LPCWSTR -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "OLE32.dll"
#cfunc global StgIsStorageFile "StgIsStorageFile" wstr
; res = StgIsStorageFile(pwcsName)
; pwcsName : LPCWSTR -> "wstr"
; HRESULT StgIsStorageFile(LPCWSTR pwcsName)
#uselib "OLE32.dll"
#cfunc global StgIsStorageFile "StgIsStorageFile" wstr
; res = StgIsStorageFile(pwcsName)
; pwcsName : LPCWSTR -> "wstr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procStgIsStorageFile = ole32.NewProc("StgIsStorageFile")
)

// pwcsName (LPCWSTR)
r1, _, err := procStgIsStorageFile.Call(
	uintptr(unsafe.Pointer(windows.StringToUTF16Ptr(pwcsName))),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HRESULT
function StgIsStorageFile(
  pwcsName: PWideChar   // LPCWSTR
): Integer; stdcall;
  external 'OLE32.dll' name 'StgIsStorageFile';
result := DllCall("OLE32\StgIsStorageFile"
    , "WStr", pwcsName   ; LPCWSTR
    , "Int")   ; return: HRESULT
●StgIsStorageFile(pwcsName) = DLL("OLE32.dll", "int StgIsStorageFile(char*)")
# 呼び出し: StgIsStorageFile(pwcsName)
# pwcsName : LPCWSTR -> "char*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "ole32" fn StgIsStorageFile(
    pwcsName: [*c]const u16 // LPCWSTR
) callconv(std.os.windows.WINAPI) i32;
proc StgIsStorageFile(
    pwcsName: WideCString  # LPCWSTR
): int32 {.importc: "StgIsStorageFile", stdcall, dynlib: "OLE32.dll".}
pragma(lib, "ole32");
extern(Windows)
int StgIsStorageFile(
    const(wchar)* pwcsName   // LPCWSTR
);
ccall((:StgIsStorageFile, "OLE32.dll"), stdcall, Int32,
      (Cwstring,),
      pwcsName)
# pwcsName : LPCWSTR -> Cwstring
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int32_t StgIsStorageFile(
    const uint16_t* pwcsName);
]]
local ole32 = ffi.load("ole32")
-- ole32.StgIsStorageFile(pwcsName)
-- pwcsName : LPCWSTR
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('OLE32.dll');
const StgIsStorageFile = lib.func('__stdcall', 'StgIsStorageFile', 'int32_t', ['str16']);
// StgIsStorageFile(pwcsName)
// pwcsName : LPCWSTR -> 'str16'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("OLE32.dll", {
  StgIsStorageFile: { parameters: ["buffer"], result: "i32" },
});
// lib.symbols.StgIsStorageFile(pwcsName)
// pwcsName : LPCWSTR -> "buffer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t StgIsStorageFile(
    const uint16_t* pwcsName);
C, "OLE32.dll");
// $ffi->StgIsStorageFile(pwcsName);
// pwcsName : LPCWSTR
// 構造体/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 Ole32 extends StdCallLibrary {
    Ole32 INSTANCE = Native.load("ole32", Ole32.class);
    int StgIsStorageFile(
        WString pwcsName   // LPCWSTR
    );
}
@[Link("ole32")]
lib LibOLE32
  fun StgIsStorageFile = StgIsStorageFile(
    pwcsName : UInt16*   # LPCWSTR
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef StgIsStorageFileNative = Int32 Function(Pointer<Utf16>);
typedef StgIsStorageFileDart = int Function(Pointer<Utf16>);
final StgIsStorageFile = DynamicLibrary.open('OLE32.dll')
    .lookupFunction<StgIsStorageFileNative, StgIsStorageFileDart>('StgIsStorageFile');
// pwcsName : LPCWSTR -> Pointer<Utf16>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function StgIsStorageFile(
  pwcsName: PWideChar   // LPCWSTR
): Integer; stdcall;
  external 'OLE32.dll' name 'StgIsStorageFile';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "StgIsStorageFile"
  c_StgIsStorageFile :: CWString -> IO Int32
-- pwcsName : LPCWSTR -> CWString
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let stgisstoragefile =
  foreign "StgIsStorageFile"
    ((ptr uint16_t) @-> returning int32_t)
(* pwcsName : LPCWSTR -> (ptr uint16_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library ole32 (t "OLE32.dll"))
(cffi:use-foreign-library ole32)

(cffi:defcfun ("StgIsStorageFile" stg-is-storage-file :convention :stdcall) :int32
  (pwcs-name (:string :encoding :utf-16le)))   ; LPCWSTR
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $StgIsStorageFile = Win32::API::More->new('OLE32',
    'int StgIsStorageFile(LPCWSTR pwcsName)');
# my $ret = $StgIsStorageFile->Call($pwcsName);
# pwcsName : LPCWSTR -> LPCWSTR
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。