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

StgIsStorageILockBytes

関数
ILockBytesが複合ドキュメントを含むかどうかを判定する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

HRESULT StgIsStorageILockBytes(
    ILockBytes* plkbyt
);

パラメーター

名前方向説明
plkbytILockBytes*in判定対象のILockBytesへのポインタ。複合ストレージ形式かどうかを判定する。

戻り値の型: HRESULT

各言語での呼び出し定義

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

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

StgIsStorageILockBytes = ctypes.windll.ole32.StgIsStorageILockBytes
StgIsStorageILockBytes.restype = ctypes.c_int
StgIsStorageILockBytes.argtypes = [
    ctypes.c_void_p,  # plkbyt : ILockBytes*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procStgIsStorageILockBytes = ole32.NewProc("StgIsStorageILockBytes")
)

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

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

typedef StgIsStorageILockBytesNative = Int32 Function(Pointer<Void>);
typedef StgIsStorageILockBytesDart = int Function(Pointer<Void>);
final StgIsStorageILockBytes = DynamicLibrary.open('OLE32.dll')
    .lookupFunction<StgIsStorageILockBytesNative, StgIsStorageILockBytesDart>('StgIsStorageILockBytes');
// plkbyt : ILockBytes* -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function StgIsStorageILockBytes(
  plkbyt: Pointer   // ILockBytes*
): Integer; stdcall;
  external 'OLE32.dll' name 'StgIsStorageILockBytes';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "StgIsStorageILockBytes"
  c_StgIsStorageILockBytes :: Ptr () -> IO Int32
-- plkbyt : ILockBytes* -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

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

(cffi:defcfun ("StgIsStorageILockBytes" stg-is-storage-ilock-bytes :convention :stdcall) :int32
  (plkbyt :pointer))   ; ILockBytes*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $StgIsStorageILockBytes = Win32::API::More->new('OLE32',
    'int StgIsStorageILockBytes(LPVOID plkbyt)');
# my $ret = $StgIsStorageILockBytes->Call($plkbyt);
# plkbyt : ILockBytes* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型