nodejs 调用win32 api

Posted Ajanuw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs 调用win32 api相关的知识,希望对你有一定的参考价值。

>node -v
v12.16.1

>npm install -g node-gyp
>npm i @saleae/ffi

>node test.js
1

test.js

const ffi = require("@saleae/ffi");

// Convert JSString to CString
function TEXT(text) {
  return Buffer.from(`${text}\\0`, "ucs2");
}

// Import user32
const user32 = new ffi.Library("user32", {
  // 返回值类型,参数列表类型
  MessageBoxW: ["int32", ["int32", "string", "string", "int32"]],
  SetCursorPos: ["bool", ["int32", "int32"]],
});

const OK_or_Cancel = user32.MessageBoxW(
  0, // 要创建的消息框的所有者窗口的句柄。如果此参数为NULL,则消息框没有所有者窗口
  TEXT("Hello from Node.js!"), // 要显示的消息。如果字符串包含多行,则可以在每行之间使用回车符和/或换行符来分隔行
  TEXT("Hello, World!"), // 对话框标题。如果此参数为NULL,则默认标题为Error。
  1 // 对话框的内容和行为。此参数可以是来自以下标志组的标志的组合。
);

console.log(OK_or_Cancel);

// user32.SetCursorPos(0, 0);

获取窗口句柄

const ffi = require("@saleae/ffi");

// Convert JSString to CString
function TEXT(text) {
  return Buffer.from(`${text}\\0`, "ucs2");
}

// Import user32
const user32 = new ffi.Library("user32", {
  FindWindowW: ["int32", ["string", "string"]],
});

var hwnd = user32.FindWindowW(TEXT(\'Progman\'), null);
console.log(hwnd); // 65814
console.log(hwnd.toString(16)); // 10116

以上是关于nodejs 调用win32 api的主要内容,如果未能解决你的问题,请参考以下文章

WPF 精修篇 调用Win32Api

python可以直接调用win32的api吗

C#调用Win32 API 的方法

MSIL 教程:数组分支循环使用不安全代码和如何调用Win32 API(转)

python可以直接调用win32的api吗

游戏更新就出现发生致命错误Win32Error怎么回事