wasm_dlfcn.h 333 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _WASM_DLFCN_H
  6. #define _WASM_DLFCN_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. void *
  11. wasm_dlsym(void *handle, const char *symbol);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* end of _WASM_DLFCN_H */