File tree 1 file changed +8
-8
lines changed 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -133,18 +133,18 @@ enum encoding ParseEncoding(v8::Handle<v8::Value> encoding_v,
133
133
NODE_EXTERN void FatalException (v8::TryCatch &try_catch);
134
134
void DisplayExceptionLine (v8::TryCatch &try_catch); // hack
135
135
136
- v8::Local<v8::Value> Encode (const void *buf, size_t len,
137
- enum encoding encoding = BINARY);
136
+ NODE_EXTERN v8::Local<v8::Value> Encode (const void *buf, size_t len,
137
+ enum encoding encoding = BINARY);
138
138
139
139
// Returns -1 if the handle was not valid for decoding
140
- ssize_t DecodeBytes (v8::Handle <v8::Value>,
141
- enum encoding encoding = BINARY);
140
+ NODE_EXTERN ssize_t DecodeBytes (v8::Handle <v8::Value>,
141
+ enum encoding encoding = BINARY);
142
142
143
143
// returns bytes written.
144
- ssize_t DecodeWrite (char *buf,
145
- size_t buflen,
146
- v8::Handle <v8::Value>,
147
- enum encoding encoding = BINARY);
144
+ NODE_EXTERN ssize_t DecodeWrite (char *buf,
145
+ size_t buflen,
146
+ v8::Handle <v8::Value>,
147
+ enum encoding encoding = BINARY);
148
148
149
149
v8::Local<v8::Object> BuildStatsObject (const uv_statbuf_t * s);
150
150
You can’t perform that action at this time.
0 commit comments