Borland C++ Builder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TKM
    New Member
    • Dec 2007
    • 11

    Borland C++ Builder

    Hi,

    I tried customizing a new component based on the instructions from the book "Borland C++ Builder How-To". However, linker errors keep popping up claiming that the fastcall functions declared in the customized component could not be resolved. Does anyone has the same encounter?
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Any function argument that can't be passed in a register conflicts with the fastcall concept. Functions like that shoud not be coded as fastcall.

    Comment

    • TKM
      New Member
      • Dec 2007
      • 11

      #3
      Could you give me some examples of arguments that cannot be passed into register? Thanks!

      Comment

      • weaknessforcats
        Recognized Expert Expert
        • Mar 2007
        • 9214

        #4
        No user-defined types can be in registers.

        Comment

        Working...