More wasm details, deal with requirements for -sMAIN_MODULE

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-07-09 23:11:02 +01:00
parent c3f271d9e9
commit d1d08e4704
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
12 changed files with 112 additions and 40 deletions

View 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);
}
}
// -----------------------------------------------------------------------------------------------------------