Win32 API 日本語リファレンス
ホームNetworkManagement.NetworkDiagnosticsFramework › NdfCancelIncident

NdfCancelIncident

関数
進行中の診断インシデント処理をキャンセルする。
DLLNDFAPI.dll呼出規約winapi対応OSWindows 7 以降

シグネチャ

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

HRESULT NdfCancelIncident(
    void* Handle
);

パラメーター

名前方向説明
Handlevoid*inキャンセルする診断インシデントのハンドルを指定する。

戻り値の型: HRESULT

各言語での呼び出し定義

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

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

NdfCancelIncident = ctypes.windll.ndfapi.NdfCancelIncident
NdfCancelIncident.restype = ctypes.c_int
NdfCancelIncident.argtypes = [
    ctypes.POINTER(None),  # Handle : void*
]
require 'fiddle'
require 'fiddle/import'

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

var (
	ndfapi = windows.NewLazySystemDLL("NDFAPI.dll")
	procNdfCancelIncident = ndfapi.NewProc("NdfCancelIncident")
)

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

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

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

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

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

(cffi:defcfun ("NdfCancelIncident" ndf-cancel-incident :convention :stdcall) :int32
  (handle :pointer))   ; void*
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $NdfCancelIncident = Win32::API::More->new('NDFAPI',
    'int NdfCancelIncident(LPVOID Handle)');
# my $ret = $NdfCancelIncident->Call($Handle);
# Handle : void* -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。