WebAssembly01--util.h

简介: WebAssembly01--util.h

内容简要 请使用者自行优化

#ifndef EM_PORT_API
# if defined(__EMSCRIPTEN__)
#   include <emscripten.h>
#   if defined(__cplusplus)
#     define EM_PORT_API(rettype) extern "C" rettype EMSCRIPTEN_KEEPALIVE
#   else
#     define EM_PORT_API(rettype) rettype EMSCRIPTEN_KEEPALIVE
#   endif
# else
#   if defined(__cplusplus)
#     define EM_PORT_API(rettype) extern "C" rettype
#   else
#     define EM_PORT_API(rettype) rettype
#   endif
# endif
#endif
#include<stdio.h>
#include<emscripten.h>
#include<stdlib.h>
#include<string.h>
目录
打赏
0
0
0
0
3
分享
相关文章
Rhino -- 基于java的javascript实现
这几天突然对js引擎非常感兴趣,大概了解了一下,记下来备忘。javascript引擎大家比较熟悉的应该是当前比较火的Chrome V8引擎。以快速闻名。v8基于c++开发。这里就不多阐述了。另外一个是 基于java的Rhino引擎,这个想来大家不是很了解。
3133 0
Java Selenium封装--RemoteWebDriver
1 package com.selenium.driver; 2 import java.io.File; 3 import java.io.IOException; 4 import java.
1042 1
Java Selenium封装--RemoteWebElement
1 package com.liuke.selenium.driver; 2 3 import java.sql.SQLException; 4 import java.util.
827 0
Java和JavaScript的区别
【4月更文挑战第8天】Java和JavaScript的区别
81 1

热门文章

最新文章

AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等