Best resources for converting C/C++ dll headers to Delphi?

前端 未结 7 1229
说谎
说谎 2020-12-08 05:49

A rather comprehensive site explaining the difficulties and solutions involved in using a dll written in c/c++ and the conversion of the .h header file to delphi/pascal was

相关标签:
7条回答
  • 2020-12-08 06:21

    use this option so the byte alignment is the same as C/C++ and then you don't need to add padding bytes in structs.

    {$MINENUMSIZE 4}

    0 讨论(0)
提交回复
热议问题