I'm writing a native module that wraps a C program.  Below is my
module declaration but when I build it with node-waf I get the
following error:

error: ‘node_module_struct’ in class ‘node’ does not name a type

#define FREELING_BINDING
#include <node.h>
#include <v8.h>
#include "freeling_tokenizer.h"

void InitAll(v8::Handle<v8::Object> target) {
        FreeLingTokenizer::Init(target);
}

NODE_MODULE(freeling, InitAll)

-- 
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 nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to