13 Star 23 Fork 224

OpenHarmony/arkcompiler_toolchain

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.gitee
common
docs
figures
inspector
test
BUILD.gn
connect_inspector.cpp
connect_inspector.h
connect_server.cpp
connect_server.h
init_static.cpp
init_static.h
inspector.cpp
inspector.h
library_loader.cpp
library_loader.h
ws_server.cpp
ws_server.h
platform
test
tooling
websocket
.gitignore
BUILD.gn
CODEOWNERS
LICENSE
OAT.xml
README_zh.md
REVIEWERS
bundle.json
toolchain.gni
toolchain_config.gni
克隆/下载
library_loader.h 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
zhou-wenxuan 提交于 3年前 . Code alarm cleaning
/**
* Copyright (c) 2022 Huawei Device Co., Ltd.
* 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 ARKCOMPILER_TOOLCHAIN_INSPECTOR_LIBRARY_LOADER_H
#define ARKCOMPILER_TOOLCHAIN_INSPECTOR_LIBRARY_LOADER_H
#include <string_view>
namespace OHOS::ArkCompiler::Toolchain {
void* Load(std::string_view libraryName);
void* ResolveSymbol(void* handle, std::string_view symbol);
void CloseHandle(void* handle);
} // namespace OHOS::ArkCompiler::Toolchain
#endif // ARKCOMPILER_TOOLCHAIN_INSPECTOR_LIBRARY_LOADER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/openharmony/arkcompiler_toolchain.git
git@gitee.com:openharmony/arkcompiler_toolchain.git
openharmony
arkcompiler_toolchain
arkcompiler_toolchain
master

搜索帮助