Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/guarana/magma/exams/   (GAP Algebra Version 4.15.1©)  Datei vom 11.1.2022 mit Größe 22 kB image not shown  

Quellcode-Bibliothek shared_WIN32.c.in   Sprache: unbekannt

 
#define _WIN32_WINNT 0x0501  /* Cf below, we restrict to  */

#include <caml/mlvalues.h>
#include <caml/memory.h>
#include <windows.h>

/* convert an OCaml pid (a process-local handle #) to a Win32 pid (global) */
CAMLprim value win32_cvtpid(value pseudopid) {
  CAMLparam1(pseudopid);
  HANDLE h;
  DWORD win32_pid;
  
  h = (HANDLE)(Long_val(pseudopid));
  win32_pid = GetProcessId(h);
  CAMLreturn(Val_int(win32_pid));
}

Messung V0.5 in Prozent
C=89 H=100 G=94

[0.2QuellennavigatorsProjekt 2026-06-10]