/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/LIEF/src/messages.hpp
59 строк
2 KB
Joyee Cheung
deps: add LIEF as a dependency
23 янв 2026, 01:32
Не верифицирован
23 янв 2026, 01:32
d82ae9e
Код
Авторство
О чём код?
/* Copyright 2021 - 2025 R. Thomas * * 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 LIEF_MSG_H #define LIEF_MSG_H #if !defined(LIEF_DOC_PREFIX) #define LIEF_DOC_PREFIX "https://lief.re/doc" #endif #define SUBMISSION_MSG \ "This file can be interesting for improving LIEF. " \ "If you have the rights to do, please consider submitting this file " \ "through a GitHub issue: https://github.com/lief-project/LIEF" #if !defined(DEBUG_FMT_NOT_SUPPORTED) #define DEBUG_FMT_NOT_SUPPORTED \ "DebugInfo are not available for this build.\n" \ "Please checkout " LIEF_DOC_PREFIX "/latest/extended/intro.html for the details" #endif #if !defined(OBJC_NOT_SUPPORTED) #define OBJC_NOT_SUPPORTED \ "ObjC metadata are not available for this build.\n" \ "Please checkout " LIEF_DOC_PREFIX "/latest/extended/intro.html for the details" #endif #if !defined(DSC_NOT_SUPPORTED) #define DSC_NOT_SUPPORTED \ "Dyld shared cache is not available for this build.\n" \ "Please checkout " LIEF_DOC_PREFIX "/latest/extended/intro.html for the details" #endif #if !defined(ASSEMBLY_NOT_SUPPORTED) #define ASSEMBLY_NOT_SUPPORTED \ "Assembler/disassembler is not available for this build.\n" \ "Please checkout " LIEF_DOC_PREFIX "/latest/extended/intro.html for the details" #endif #if !defined(NEEDS_EXTENDED_MSG) #define NEEDS_EXTENDED_MSG \ "This function requires the extended version of LIEF.\n" \ "Please checkout " LIEF_DOC_PREFIX "/latest/extended/intro.html for the details" #endif #endif