Home | History | Annotate | Line # | Download | only in Windows
      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;
     17