Merge changes
This commit is contained in:
@@ -19,6 +19,7 @@ namespace lime {
|
||||
ArrayBufferView (value arrayBufferView);
|
||||
~ArrayBufferView ();
|
||||
|
||||
void Clear ();
|
||||
unsigned char *Data ();
|
||||
const unsigned char *Data () const;
|
||||
int Length () const;
|
||||
@@ -27,7 +28,7 @@ namespace lime {
|
||||
void Set (const QuickVec<unsigned char> data);
|
||||
value Value ();
|
||||
|
||||
Bytes *buffer;
|
||||
Bytes buffer;
|
||||
int byteLength;
|
||||
int length;
|
||||
|
||||
|
||||
@@ -9,7 +9,10 @@
|
||||
namespace lime {
|
||||
|
||||
|
||||
struct Bytes {
|
||||
class Bytes {
|
||||
|
||||
|
||||
public:
|
||||
|
||||
|
||||
Bytes ();
|
||||
@@ -19,6 +22,7 @@ namespace lime {
|
||||
Bytes (const QuickVec<unsigned char> data);
|
||||
~Bytes ();
|
||||
|
||||
void Clear ();
|
||||
unsigned char *Data ();
|
||||
const unsigned char *Data () const;
|
||||
int Length () const;
|
||||
@@ -30,7 +34,6 @@ namespace lime {
|
||||
|
||||
unsigned char *_data;
|
||||
int _length;
|
||||
AutoGCRoot *_root;
|
||||
value _value;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user