Hi, we have a Node.js module that runs on both Mac OS X and Linux that makes use of the HandleWrap class (src/handle_wrap.h) in order to schedule an asynchronous callback in certain cases. We're trying to get the module working in Windows as well but as the HandleWrap class is not marked as NODE_EXTERN it's unavailable to us at link time. Adding NODE_EXTERN makes our module work fine, but obviously only with versions of Node also compiled with it.
Would defining the HandleWrap class as NODE_EXTERN be something that's possible in Node trunk in a future release or are there reasons to avoid doing so? Thanks in advance, Andrew -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
