How to convert AS3 ByteArray into wchar_t const* filename?
So in my C code I have a function waiting for a file with void fun (wchar_t const* filename) how to send to that function my ByteArray? (Or, how should I re-write my function?)
|
How to convert AS3 So in my C code I have a function waiting for a file with
| ||||
feedback
|
|
A four month old question. Better late than never? To convert a ByteArray to a String in AS3, there are two ways depending on how the String was stored. Firstly, if you use
Alternatively,
Since you want to do this with Alchemy, you just need to convert the above code. Here's a conversion of the second example:
This has a ridiculous amount of memory leaks, of course, since I'm not calling Anyway, the | |||||
feedback
|