1

我正在 Visual Studio 2008 中构建一个 C++ DLL,供用 Borland C++ Builder 6 编写的 C 应用程序使用。

我的调试 DLL 构建导出用下划线装饰的方法。然而,在我发布的 DLL 构建中,这些方法没有被修饰,导致 C++ Builder 中的链接器错误。(有关两种构建类型的 dumpbin.exe 的输出,请参见下文)

我检查了调试和发布配置的编译器选项,看不到任何可能导致此问题的东西。

我已经设法解决了这个问题。Borland 工具 implib 将 Visual Studio .lib 文件转换为 C++ Builder .lib 文件,可以添加下划线。但我想了解为什么出口没有被装饰。

头文件methods.h

#ifndef METHODS_H
#define METHODS_H

#ifdef ENCRYPTION_EXPORTS
#define DLLEXPORT __declspec(dllexport)
#else
#define DLLEXPORT __declspec(dllimport)
#endif

#ifdef __cplusplus
extern "C"
{
#endif

DLLEXPORT BOOL EncryptString(char *szPlain, char *szEncrypted);
DLLEXPORT BOOL DecryptString(char *szEncrypted, char *szPlain);
DLLEXPORT BOOL EncryptInitialise(void);
DLLEXPORT void EncryptExit(void);

#ifdef __cplusplus
}
#endif

#endif

用于调试构建的 Dumpbin.exe 输出

dumpbin /EXPORTS 加密.dll

Microsoft (R) COFF/PE Dumper Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.

Dump of file encryption.dll

File Type: DLL

  Section contains the following exports for encryption.dll

    00000000 characteristics
    50B8B22E time date stamp Fri Nov 30 13:18:38 2012
        0.00 version
           1 ordinal base
           4 number of functions
           4 number of names

    ordinal hint RVA      name

          1    0 000308F7 DecryptString = @ILT+2290(_DecryptString)
          2    1 00031635 EncryptExit = @ILT+5680(_EncryptExit)
          3    2 000303CF EncryptInitialise = @ILT+970(_EncryptInitialise)
          4    3 0003003C EncryptString = @ILT+55(_EncryptString)

  Summary

        5000 .data
        1000 .idata
       13000 .rdata
        5000 .reloc
        1000 .rsrc
       64000 .text
       2F000 .textbss

发布版本的 Dumpbin.exe 输出

dumpbin /EXPORTS 加密.dll

Microsoft (R) COFF/PE Dumper Version 9.00.30729.01
Copyright (C) Microsoft Corporation.  All rights reserved.

Dump of file encryption.dll

File Type: DLL

  Section contains the following exports for encryption.dll

    00000000 characteristics
    50B8BE14 time date stamp Fri Nov 30 14:09:24 2012
        0.00 version
           1 ordinal base
           4 number of functions
           4 number of names

    ordinal hint RVA      name

          1    0 00001A10 DecryptString
          2    1 000012C0 EncryptExit
          3    2 00001370 EncryptInitialise
          4    3 00001820 EncryptString

  Summary

        4000 .data
        4000 .rdata
        2000 .reloc
        1000 .rsrc
        F000 .text
4

1 回答 1

1

这是一篇关于调用约定和名称装饰的文章。名称装饰可能会被项目中的 *.def 文件否决。

于 2012-11-30T16:37:02.863 回答