-
Notifications
You must be signed in to change notification settings - Fork 0
/
v8-3.0.0.1-export.patch
30 lines (26 loc) · 1.05 KB
/
v8-3.0.0.1-export.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From 57dbb6d9e624cf059b79502b698e4aea3ebb372d Mon Sep 17 00:00:00 2001
From: Lubomir Rintel <[email protected]>
Date: Tue, 28 Dec 2010 10:47:36 +0100
Subject: [PATCH] Export v8::Object::GetIndexedPropertiesExternalArrayData*()
Node.js uses those.
---
include/v8.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/v8.h b/include/v8.h
index 8ecf63a..6a656b4 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1647,9 +1647,9 @@ class Object : public Value {
ExternalArrayType array_type,
int number_of_elements);
bool HasIndexedPropertiesInExternalArrayData();
- void* GetIndexedPropertiesExternalArrayData();
- ExternalArrayType GetIndexedPropertiesExternalArrayDataType();
- int GetIndexedPropertiesExternalArrayDataLength();
+ V8EXPORT void* GetIndexedPropertiesExternalArrayData();
+ V8EXPORT ExternalArrayType GetIndexedPropertiesExternalArrayDataType();
+ V8EXPORT int GetIndexedPropertiesExternalArrayDataLength();
V8EXPORT static Local<Object> New();
static inline Object* Cast(Value* obj);
--
1.7.3.2