Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Windows: make Buffer and ObjectWrap available to compiled extensions
Browse files Browse the repository at this point in the history
Closes GH-2036
  • Loading branch information
piscisaureus committed Nov 16, 2011
1 parent 9c70b09 commit 3e696d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/node_buffer.h
Expand Up @@ -63,7 +63,7 @@ namespace node {
*/


class Buffer : public ObjectWrap {
class NODE_EXTERN Buffer: public ObjectWrap {
public:

static bool HasInstance(v8::Handle<v8::Value> val);
Expand Down
2 changes: 1 addition & 1 deletion src/node_object_wrap.h
Expand Up @@ -27,7 +27,7 @@

namespace node {

class ObjectWrap {
class NODE_EXTERN ObjectWrap {
public:
ObjectWrap ( ) {
refs_ = 0;
Expand Down

0 comments on commit 3e696d1

Please sign in to comment.