Win32 API 日本語リファレンス
ホームWeb.InternetExplorer › IEDisassociateThreadWithTab

IEDisassociateThreadWithTab

関数
スレッドとIEタブスレッドの関連付けを解除する。
DLLIeframe.dll呼出規約winapi

シグネチャ

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

HRESULT IEDisassociateThreadWithTab(
    DWORD dwTabThreadID,
    DWORD dwAssociatedThreadID
);

パラメーター

名前方向説明
dwTabThreadIDDWORDin対象タブを実行しているスレッドのID。
dwAssociatedThreadIDDWORDinタブとの関連付けを解除するスレッドのID。

戻り値の型: HRESULT

各言語での呼び出し定義

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

HRESULT IEDisassociateThreadWithTab(
    DWORD dwTabThreadID,
    DWORD dwAssociatedThreadID
);
[DllImport("Ieframe.dll", ExactSpelling = true)]
static extern int IEDisassociateThreadWithTab(
    uint dwTabThreadID,   // DWORD
    uint dwAssociatedThreadID   // DWORD
);
<DllImport("Ieframe.dll", ExactSpelling:=True)>
Public Shared Function IEDisassociateThreadWithTab(
    dwTabThreadID As UInteger,   ' DWORD
    dwAssociatedThreadID As UInteger   ' DWORD
) As Integer
End Function
' dwTabThreadID : DWORD
' dwAssociatedThreadID : DWORD
Declare PtrSafe Function IEDisassociateThreadWithTab Lib "ieframe" ( _
    ByVal dwTabThreadID As Long, _
    ByVal dwAssociatedThreadID As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

IEDisassociateThreadWithTab = ctypes.windll.ieframe.IEDisassociateThreadWithTab
IEDisassociateThreadWithTab.restype = ctypes.c_int
IEDisassociateThreadWithTab.argtypes = [
    wintypes.DWORD,  # dwTabThreadID : DWORD
    wintypes.DWORD,  # dwAssociatedThreadID : DWORD
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ieframe = windows.NewLazySystemDLL("Ieframe.dll")
	procIEDisassociateThreadWithTab = ieframe.NewProc("IEDisassociateThreadWithTab")
)

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

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

typedef IEDisassociateThreadWithTabNative = Int32 Function(Uint32, Uint32);
typedef IEDisassociateThreadWithTabDart = int Function(int, int);
final IEDisassociateThreadWithTab = DynamicLibrary.open('Ieframe.dll')
    .lookupFunction<IEDisassociateThreadWithTabNative, IEDisassociateThreadWithTabDart>('IEDisassociateThreadWithTab');
// dwTabThreadID : DWORD -> Uint32
// dwAssociatedThreadID : DWORD -> Uint32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function IEDisassociateThreadWithTab(
  dwTabThreadID: DWORD;   // DWORD
  dwAssociatedThreadID: DWORD   // DWORD
): Integer; stdcall;
  external 'Ieframe.dll' name 'IEDisassociateThreadWithTab';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "IEDisassociateThreadWithTab"
  c_IEDisassociateThreadWithTab :: Word32 -> Word32 -> IO Int32
-- dwTabThreadID : DWORD -> Word32
-- dwAssociatedThreadID : DWORD -> Word32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let iedisassociatethreadwithtab =
  foreign "IEDisassociateThreadWithTab"
    (uint32_t @-> uint32_t @-> returning int32_t)
(* dwTabThreadID : DWORD -> uint32_t *)
(* dwAssociatedThreadID : DWORD -> uint32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library ieframe (t "Ieframe.dll"))
(cffi:use-foreign-library ieframe)

(cffi:defcfun ("IEDisassociateThreadWithTab" iedisassociate-thread-with-tab :convention :stdcall) :int32
  (dw-tab-thread-id :uint32)   ; DWORD
  (dw-associated-thread-id :uint32))   ; DWORD
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $IEDisassociateThreadWithTab = Win32::API::More->new('Ieframe',
    'int IEDisassociateThreadWithTab(DWORD dwTabThreadID, DWORD dwAssociatedThreadID)');
# my $ret = $IEDisassociateThreadWithTab->Call($dwTabThreadID, $dwAssociatedThreadID);
# dwTabThreadID : DWORD -> DWORD
# dwAssociatedThreadID : DWORD -> DWORD
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。