Say I have a lot of C code that uses variable-length byte buffers with something like this:
struct ByteBuffer {
uint8_t* pData;
uint32_t len;
};
How may I access such a buffer from Javascript?
--
You received this message because you are subscribed to the Google Groups
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
