/
niceSOFT
/
openssl
Обзор
Документация
Войти
/
niceSOFT
/
openssl
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configurations/platform/Windows/cppbuilder.pm
16 строк
376 B
Tanzinul Islam
Link with .def files
19 апр 2021, 12:05
19 апр 2021, 12:05
491a1e3
Код
Авторство
О чём код?
package platform::Windows::cppbuilder; use vars qw(@ISA); require platform::Windows::MSVC; @ISA = qw(platform::Windows::MSVC); sub pdbext { '.tds' } # C++Builder's Clang-based compilers prepend an underscore to __cdecl-convention # C functions, and the linker needs those as the InternalName in the .def file. sub export2internal { return "_$_[1]"; } 1;