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

CoGetCurrentProcess

関数
現在のスレッドの一意なプロセス識別子を取得する。
DLLOLE32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

DWORD CoGetCurrentProcess(void);

パラメーターなし。戻り値: DWORD

公式ドキュメント

現在のスレッドに固有の値を返します。CoGetCurrentProcess は、スレッド ID の再利用に関する問題を回避するために使用できます。

戻り値

この関数は、現在のスレッドの一意な識別子を返します。

解説(Remarks)

CoGetCurrentProcess の呼び出しから返される値を使用すると、スレッドをキーとするテーブルの管理や、他のスレッドまたはプロセスに対してスレッドを一意に識別する際に役立ちます。

CoGetCurrentProcess が返す値は事実上一意です。これは、現在のワークステーション上でさらに 2³² 個のスレッドが作成されるまで、またはワークステーションが再起動されるまで、その値が再使用されないためです。

CoGetCurrentProcess が返す値は、呼び出し元の存続期間中、常に同じスレッドを一意に識別します。スレッド ID はスレッドの作成と破棄に伴って通知なく再利用される可能性があるため、この値は GetCurrentThreadId 関数が返す値よりも信頼性が高くなります。

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

各言語での呼び出し定義

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

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

CoGetCurrentProcess = ctypes.windll.ole32.CoGetCurrentProcess
CoGetCurrentProcess.restype = wintypes.DWORD
CoGetCurrentProcess.argtypes = []
require 'fiddle'
require 'fiddle/import'

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

var (
	ole32 = windows.NewLazySystemDLL("OLE32.dll")
	procCoGetCurrentProcess = ole32.NewProc("CoGetCurrentProcess")
)

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

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

typedef CoGetCurrentProcessNative = Uint32 Function();
typedef CoGetCurrentProcessDart = int Function();
final CoGetCurrentProcess = DynamicLibrary.open('OLE32.dll')
    .lookupFunction<CoGetCurrentProcessNative, CoGetCurrentProcessDart>('CoGetCurrentProcess');
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function CoGetCurrentProcess: DWORD; stdcall;
  external 'OLE32.dll' name 'CoGetCurrentProcess';
import Foreign
import Foreign.C.Types
import Foreign.C.String

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

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

(cffi:defcfun ("CoGetCurrentProcess" co-get-current-process :convention :stdcall) :uint32)
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $CoGetCurrentProcess = Win32::API::More->new('OLE32',
    'DWORD CoGetCurrentProcess()');
# my $ret = $CoGetCurrentProcess->Call();
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。