ホーム › UI.WindowsAndMessaging › IsInterceptWindow
IsInterceptWindow
関数ウィンドウがインターセプトウィンドウか判定する。
シグネチャ
// USER32.dll
#include <windows.h>
BOOL IsInterceptWindow(
HWND topLevelWindow,
BOOL* isIntercept
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| topLevelWindow | HWND | in | 判定対象のトップレベルウィンドウのハンドル。 |
| isIntercept | BOOL* | out | インターセプトウィンドウか否かの判定結果を受け取るBOOLへのポインタ。 |
戻り値の型: BOOL
各言語での呼び出し定義
// USER32.dll
#include <windows.h>
BOOL IsInterceptWindow(
HWND topLevelWindow,
BOOL* isIntercept
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", ExactSpelling = true)]
static extern bool IsInterceptWindow(
IntPtr topLevelWindow, // HWND
out bool isIntercept // BOOL* out
);<DllImport("USER32.dll", ExactSpelling:=True)>
Public Shared Function IsInterceptWindow(
topLevelWindow As IntPtr, ' HWND
<Out> ByRef isIntercept As Boolean ' BOOL* out
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' topLevelWindow : HWND
' isIntercept : BOOL* out
Declare PtrSafe Function IsInterceptWindow Lib "user32" ( _
ByVal topLevelWindow As LongPtr, _
ByRef isIntercept As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
IsInterceptWindow = ctypes.windll.user32.IsInterceptWindow
IsInterceptWindow.restype = wintypes.BOOL
IsInterceptWindow.argtypes = [
wintypes.HANDLE, # topLevelWindow : HWND
ctypes.c_void_p, # isIntercept : BOOL* out
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('USER32.dll')
IsInterceptWindow = Fiddle::Function.new(
lib['IsInterceptWindow'],
[
Fiddle::TYPE_VOIDP, # topLevelWindow : HWND
Fiddle::TYPE_VOIDP, # isIntercept : BOOL* out
],
Fiddle::TYPE_INT)#[link(name = "user32")]
extern "system" {
fn IsInterceptWindow(
topLevelWindow: *mut core::ffi::c_void, // HWND
isIntercept: *mut i32 // BOOL* out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll")]
public static extern bool IsInterceptWindow(IntPtr topLevelWindow, out bool isIntercept);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_IsInterceptWindow' -Namespace Win32 -PassThru
# $api::IsInterceptWindow(topLevelWindow, isIntercept)#uselib "USER32.dll"
#func global IsInterceptWindow "IsInterceptWindow" sptr, sptr
; IsInterceptWindow topLevelWindow, varptr(isIntercept) ; 戻り値は stat
; topLevelWindow : HWND -> "sptr"
; isIntercept : BOOL* out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "USER32.dll" #cfunc global IsInterceptWindow "IsInterceptWindow" sptr, var ; res = IsInterceptWindow(topLevelWindow, isIntercept) ; topLevelWindow : HWND -> "sptr" ; isIntercept : BOOL* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "USER32.dll" #cfunc global IsInterceptWindow "IsInterceptWindow" sptr, sptr ; res = IsInterceptWindow(topLevelWindow, varptr(isIntercept)) ; topLevelWindow : HWND -> "sptr" ; isIntercept : BOOL* out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL IsInterceptWindow(HWND topLevelWindow, BOOL* isIntercept) #uselib "USER32.dll" #cfunc global IsInterceptWindow "IsInterceptWindow" intptr, var ; res = IsInterceptWindow(topLevelWindow, isIntercept) ; topLevelWindow : HWND -> "intptr" ; isIntercept : BOOL* out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL IsInterceptWindow(HWND topLevelWindow, BOOL* isIntercept) #uselib "USER32.dll" #cfunc global IsInterceptWindow "IsInterceptWindow" intptr, intptr ; res = IsInterceptWindow(topLevelWindow, varptr(isIntercept)) ; topLevelWindow : HWND -> "intptr" ; isIntercept : BOOL* out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
user32 = windows.NewLazySystemDLL("USER32.dll")
procIsInterceptWindow = user32.NewProc("IsInterceptWindow")
)
// topLevelWindow (HWND), isIntercept (BOOL* out)
r1, _, err := procIsInterceptWindow.Call(
uintptr(topLevelWindow),
uintptr(isIntercept),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction IsInterceptWindow(
topLevelWindow: THandle; // HWND
isIntercept: Pointer // BOOL* out
): BOOL; stdcall;
external 'USER32.dll' name 'IsInterceptWindow';result := DllCall("USER32\IsInterceptWindow"
, "Ptr", topLevelWindow ; HWND
, "Ptr", isIntercept ; BOOL* out
, "Int") ; return: BOOL●IsInterceptWindow(topLevelWindow, isIntercept) = DLL("USER32.dll", "bool IsInterceptWindow(void*, void*)")
# 呼び出し: IsInterceptWindow(topLevelWindow, isIntercept)
# topLevelWindow : HWND -> "void*"
# isIntercept : BOOL* out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "user32" fn IsInterceptWindow(
topLevelWindow: ?*anyopaque, // HWND
isIntercept: [*c]i32 // BOOL* out
) callconv(std.os.windows.WINAPI) i32;proc IsInterceptWindow(
topLevelWindow: pointer, # HWND
isIntercept: ptr int32 # BOOL* out
): int32 {.importc: "IsInterceptWindow", stdcall, dynlib: "USER32.dll".}pragma(lib, "user32");
extern(Windows)
int IsInterceptWindow(
void* topLevelWindow, // HWND
int* isIntercept // BOOL* out
);ccall((:IsInterceptWindow, "USER32.dll"), stdcall, Int32,
(Ptr{Cvoid}, Ptr{Int32}),
topLevelWindow, isIntercept)
# topLevelWindow : HWND -> Ptr{Cvoid}
# isIntercept : BOOL* out -> Ptr{Int32}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t IsInterceptWindow(
void* topLevelWindow,
int32_t* isIntercept);
]]
local user32 = ffi.load("user32")
-- user32.IsInterceptWindow(topLevelWindow, isIntercept)
-- topLevelWindow : HWND
-- isIntercept : BOOL* out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('USER32.dll');
const IsInterceptWindow = lib.func('__stdcall', 'IsInterceptWindow', 'int32_t', ['void *', 'int32_t *']);
// IsInterceptWindow(topLevelWindow, isIntercept)
// topLevelWindow : HWND -> 'void *'
// isIntercept : BOOL* out -> 'int32_t *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("USER32.dll", {
IsInterceptWindow: { parameters: ["pointer", "pointer"], result: "i32" },
});
// lib.symbols.IsInterceptWindow(topLevelWindow, isIntercept)
// topLevelWindow : HWND -> "pointer"
// isIntercept : BOOL* out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t IsInterceptWindow(
void* topLevelWindow,
int32_t* isIntercept);
C, "USER32.dll");
// $ffi->IsInterceptWindow(topLevelWindow, isIntercept);
// topLevelWindow : HWND
// isIntercept : BOOL* out
// 構造体/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 User32 extends StdCallLibrary {
User32 INSTANCE = Native.load("user32", User32.class);
boolean IsInterceptWindow(
Pointer topLevelWindow, // HWND
IntByReference isIntercept // BOOL* out
);
}@[Link("user32")]
lib LibUSER32
fun IsInterceptWindow = IsInterceptWindow(
topLevelWindow : Void*, # HWND
isIntercept : Int32* # BOOL* out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef IsInterceptWindowNative = Int32 Function(Pointer<Void>, Pointer<Int32>);
typedef IsInterceptWindowDart = int Function(Pointer<Void>, Pointer<Int32>);
final IsInterceptWindow = DynamicLibrary.open('USER32.dll')
.lookupFunction<IsInterceptWindowNative, IsInterceptWindowDart>('IsInterceptWindow');
// topLevelWindow : HWND -> Pointer<Void>
// isIntercept : BOOL* out -> Pointer<Int32>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function IsInterceptWindow(
topLevelWindow: THandle; // HWND
isIntercept: Pointer // BOOL* out
): BOOL; stdcall;
external 'USER32.dll' name 'IsInterceptWindow';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "IsInterceptWindow"
c_IsInterceptWindow :: Ptr () -> Ptr CInt -> IO CInt
-- topLevelWindow : HWND -> Ptr ()
-- isIntercept : BOOL* out -> Ptr CInt
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let isinterceptwindow =
foreign "IsInterceptWindow"
((ptr void) @-> (ptr int32_t) @-> returning int32_t)
(* topLevelWindow : HWND -> (ptr void) *)
(* isIntercept : BOOL* out -> (ptr int32_t) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library user32 (t "USER32.dll"))
(cffi:use-foreign-library user32)
(cffi:defcfun ("IsInterceptWindow" is-intercept-window :convention :stdcall) :int32
(top-level-window :pointer) ; HWND
(is-intercept :pointer)) ; BOOL* out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $IsInterceptWindow = Win32::API::More->new('USER32',
'BOOL IsInterceptWindow(HANDLE topLevelWindow, LPVOID isIntercept)');
# my $ret = $IsInterceptWindow->Call($topLevelWindow, $isIntercept);
# topLevelWindow : HWND -> HANDLE
# isIntercept : BOOL* out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。