More wasm details, deal with requirements for -sMAIN_MODULE
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
c3f271d9e9
commit
d1d08e4704
12 changed files with 112 additions and 40 deletions
36
src/emscripten/WasmUtils.cpp
Normal file
36
src/emscripten/WasmUtils.cpp
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* DISTRHO Cardinal Plugin
|
||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 3 of
|
||||
* the License, or any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* For a full copy of the GNU General Public License see the LICENSE file.
|
||||
*/
|
||||
|
||||
#include <emscripten/html5.h>
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------------
|
||||
|
||||
namespace CardinalDISTRHO {
|
||||
|
||||
long d_emscripten_set_interval(void (*cb)(void* userData), double intervalMsecs, void* userData)
|
||||
{
|
||||
return emscripten_set_interval(cb, intervalMsecs, userData);
|
||||
}
|
||||
|
||||
void d_emscripten_clear_interval(long setIntervalId)
|
||||
{
|
||||
emscripten_clear_interval(setIntervalId);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------------------------
|
Loading…
Add table
Add a link
Reference in a new issue