Win32 API 日本語リファレンス
ホームSystem.Ole › OleIsCurrentClipboard

OleIsCurrentClipboard

関数
指定データオブジェクトが現在のクリップボード内容か判定する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

HRESULT OleIsCurrentClipboard(
    IDataObject* pDataObj
);

パラメーター

名前方向説明
pDataObjIDataObject*in対象となるクリップボードデータを含むデータオブジェクト上の IDataObject インターフェイスへのポインター。呼び出し元が以前クリップボードに置いたものです。

戻り値の型: HRESULT

公式ドキュメント

OleSetClipboard 関数によって以前クリップボードに置かれたデータオブジェクトのポインターが、まだクリップボード上にあるかどうかを判定します。

戻り値

この関数は成功した場合に S_OK を返します。その他に返される可能性のある値は次のとおりです。

戻り値 説明
S_FALSE
指定されたポインターはクリップボード上にありません。

解説(Remarks)

OleIsCurrentClipboard は、OleSetClipboard 関数で使用したデータオブジェクトに対してのみ機能します。データオブジェクトの利用側が、前回の OleGetClipboard 呼び出し時にクリップボード上にあったオブジェクトがまだクリップボード上にあるかどうかを判定するために呼び出すことはできません。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での呼び出し定義

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

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

OleIsCurrentClipboard = ctypes.windll.ole32.OleIsCurrentClipboard
OleIsCurrentClipboard.restype = ctypes.c_int
OleIsCurrentClipboard.argtypes = [
    ctypes.c_void_p,  # pDataObj : IDataObject*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procOleIsCurrentClipboard = ole32.NewProc("OleIsCurrentClipboard")
)

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

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

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

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

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

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

関連項目

公式の関連項目
使用する型