I am trying to use node-ffi to interface with the win32 api FormatMessageA however I cannot seem to get the out lpBuffer parameter, here is a snippet of code to show what I have tried 'use strict'; const ref = require('ref'); const ffi = require('ffi'); const Kernel32 = ffi.Library('Kernel32.dll', { [...] read more