| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef _WASM_NATIVE_H
- #define _WASM_NATIVE_H
- #include "wasm.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * Initialize the native module, e.g. sort the function defs
- * and the global defs.
- *
- * @return true if success, false otherwise
- */
- bool
- wasm_native_init();
- /**
- * Lookup native function implementation of a given import function.
- *
- * @param module_name the module name of the import function
- * @param func_name the function name of the import function
- *
- * @return return the native function pointer if success, NULL otherwise
- */
- void*
- wasm_native_func_lookup(const char *module_name, const char *func_name);
- /**
- * Lookup global variable of a given import global
- *
- * @param module_name the module name of the import global
- * @param global_name the global name of the import global
- * @param global return the global data
- *
- * @param return true if success, false otherwise
- */
- bool
- wasm_native_global_lookup(const char *module_name, const char *global_name,
- WASMGlobalImport *global);
- void* wasm_platform_native_func_lookup(const char *module_name,
- const char *func_name);
- #ifdef __cplusplus
- }
- #endif
- #endif /* end of _WASM_NATIVE_H */
|