StefanWoe
StefanWoe
Thanks for the hint, the following code works: ``` void myFunc(v8::Isolate *ptr, v8::Local params) { if(params->IsDate()) { v8::Date *date = v8::Date::Cast(*params); double millisSinceEpoch = date->ValueOf(); std::time_t t = static_cast(millisSinceEpoch/1000); ......
Hello Zac, after quite a while a got back to this topic now again. I am trying to use v8toolkit using Visual Studion 2017. I downloaded all referenced libraries, and...
Hello Zac, thanks for your quite informative answer. The thing i want to solve is attaching a chrome debugger to a v8engine that i embedded into our windows application.I posted...
Hello Zac, thanks for your trials and support. Could you give a brief description of what i need to do, to solve this problem (Debugging v8 Engine on Windows)I cant...
How did you proceed? Any news? Am Donnerstag, 8. August 2019, 08:35:05 MESZ hat Zac Hansen Folgendes geschrieben: You want to point the chrome debugger at your application and use...
Just a note: i finally found this and got it to work on windows: https://github.com/hsharsha/v8inspector. (currently only in my branch at https://github.com/StefanWoe/v8inspector). Thanks for your support anyway!