summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/app-mgr/app-manager/module_wasm_lib.c
blob: 0b5c07ea7083362aa284ac81f2d920890f069da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#include "module_wasm_lib.h"

static bool
wasm_lib_module_init(void)
{
    return false;
}

static bool
wasm_lib_module_install(request_t *msg)
{
    (void)msg;
    return false;
}

static bool
wasm_lib_module_uninstall(request_t *msg)
{
    (void)msg;
    return false;
}

static void
wasm_lib_module_watchdog_kill(module_data *m_data)
{
    (void)m_data;
}

static bool
wasm_lib_module_handle_host_url(void *queue_msg)
{
    (void)queue_msg;
    return false;
}

static module_data *
wasm_lib_module_get_module_data(void *inst)
{
    (void)inst;
    return NULL;
}

/* clang-format off */
module_interface wasm_lib_module_interface = {
    wasm_lib_module_init,
    wasm_lib_module_install,
    wasm_lib_module_uninstall,
    wasm_lib_module_watchdog_kill,
    wasm_lib_module_handle_host_url,
    wasm_lib_module_get_module_data,
    NULL
};
/* clang-format on */