Last change
on this file since 103056 was 102863, checked in by vboxsync, 16 months ago |
openssl-3.1.4: Applied and adjusted our OpenSSL changes to 3.1.3. bugref:10577
|
File size:
376 bytes
|
Line | |
---|
1 | package platform::Windows::cppbuilder;
|
---|
2 |
|
---|
3 | use vars qw(@ISA);
|
---|
4 |
|
---|
5 | require platform::Windows::MSVC;
|
---|
6 | @ISA = qw(platform::Windows::MSVC);
|
---|
7 |
|
---|
8 | sub pdbext { '.tds' }
|
---|
9 |
|
---|
10 | # C++Builder's Clang-based compilers prepend an underscore to __cdecl-convention
|
---|
11 | # C functions, and the linker needs those as the InternalName in the .def file.
|
---|
12 | sub export2internal {
|
---|
13 | return "_$_[1]";
|
---|
14 | }
|
---|
15 |
|
---|
16 | 1;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.