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

GetConvertStg

関数
ストレージの変換ビットが設定されているかを取得する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

HRESULT GetConvertStg(
    IStorage* pStg
);

パラメーター

名前方向説明
pStgIStorage*in変換ビットの状態を取得する対象のIStorageへのポインタ。

戻り値の型: HRESULT

各言語での呼び出し定義

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

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

GetConvertStg = ctypes.windll.ole32.GetConvertStg
GetConvertStg.restype = ctypes.c_int
GetConvertStg.argtypes = [
    ctypes.c_void_p,  # pStg : IStorage*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procGetConvertStg = ole32.NewProc("GetConvertStg")
)

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

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

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

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

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

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

関連項目

使用する型