You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
I am interested whether anyone has created bindings for any of the MS
Windows API ?
Many thanks in advance,
Aaron
mscdex
unread,
Jul 9, 2012, 6:45:54 PM7/9/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nodejs
On Jul 9, 1:23 pm, AaronNGray <aaronngray.li...@gmail.com> wrote:
> I am interested whether anyone has created bindings for any of the MS
> Windows API ?
This would be quite an undertaking for a generic binding. There is
node-ffi, but AFAIK that's not recommended for production use because
of the performance penalties.
Your best bet is to incorporate just the Windows API functions you
need for your binding/project.
Aaron Gray
unread,
Jul 9, 2012, 7:08:36 PM7/9/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to nod...@googlegroups.com
Okay my fall back is to generate C binding code using jison and a bit
of templated C generation if it is at all possible.
AFAICS it would be relatively easy to put together, and would be
useful for creating other C interfaces.
Types such as Windows HANDLES - HWND, etc and other types are the only
area I have not sussed how to deal with.