加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CustomizeJS.h 862 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef _CUSTOMIZE_JS_H_
#define _CUSTOMIZE_JS_H_
#include "ec_portable.h"
#include "CKLMain.h"
#include "simple_app.h"
#include "simple_handler.h"
CKLEXPORT void WINAPI Chrome_AddJSFunction(CefV8Context* context, wchar_t* name);
CKLEXPORT DWORD WINAPI Chrome_GetV8ValueListSize(const CefV8ValueList* arguments);
CKLEXPORT DWORD WINAPI Chrome_GetV8ValueInt(const CefV8ValueList* arguments, size_t pos);
CKLEXPORT DWORD WINAPI Chrome_GetV8ValueStringLength(const CefV8ValueList* arguments, size_t pos);
CKLEXPORT void WINAPI Chrome_GetV8ValueString(const CefV8ValueList* arguments, size_t pos, wchar_t* buffer, size_t buffer_length);
CKLEXPORT void WINAPI Chrome_SetV8ReturnValueInt(CefRefPtr<CefV8Value>* lpretval, int value);
CKLEXPORT void WINAPI Chrome_SetV8ReturnValueString(CefRefPtr<CefV8Value>* lpretval, wchar_t* value);
#endif // _CUSTOMIZE_JS_H_
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化