wgl.h 341 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef WAMR_GRAPHIC_LIBRARY_H
  6. #define WAMR_GRAPHIC_LIBRARY_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. void
  11. wgl_init(void);
  12. void
  13. wgl_exit(void);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* WAMR_GRAPHIC_LIBRARY_H */