瀏覽代碼

MesssageService extern function for emscripten communication

undefined
Benjamin ‘Touky’ Huet Sam Hocevar <sam@hocevar.net> 11 年之前
父節點
當前提交
88e99dc9fd
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. +13
    -0
      src/messageservice.cpp

+ 13
- 0
src/messageservice.cpp 查看文件

@@ -22,6 +22,19 @@
namespace lol
{

// This is needed to map MessageService::Send() to the JS when building the HTML.
#if EMSCRIPTEN
extern "C"
{
bool C_Send(int id, const char* message)
{
return MessageService::Send(id, message);
}
//NOT IMPLEMENTED
//bool C_FetchFirst(int id, String& message);
}
#endif //EMSCRIPTEN

/*
* The global g_renderer object, initialised by Video::Init
*/


Loading…
取消
儲存