comparison Resources/CodeGeneration/testWasmIntegrated/DefaultLibrary.js @ 496:8b6ceae45ba0 bgo-commands-codegen

Finished (untested) C++, html, typescript, tsc & browserify production.
author bgo-osimis
date Sat, 23 Feb 2019 15:04:29 +0100
parents
children 6d62fc8a6988
comparison
equal deleted inserted replaced
495:6405435480ae 496:8b6ceae45ba0
1 // this file contains the JS method you want to expose to C++ code
2
3 mergeInto(LibraryManager.library, {
4 // each time the Application updates its status, it may signal it through this method. i.e, to change the status of a button in the web interface
5 // It needs to be put in this file so that the emscripten SDK linker knows where to find it.
6 UpdateApplicationStatusFromCpp: function(statusUpdateMessage) {
7 var statusUpdateMessage_ = UTF8ToString(statusUpdateMessage);
8 UpdateWebApplication(statusUpdateMessage_);
9 }
10 });
11