Borland Error Message

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mandogon
    New Member
    • Apr 2006
    • 31

    #1

    Borland Error Message

    ive been fixing these borland errors one by one and the one i totally stomped on is this one

    [C++ Error] TextProcessor.c pp(1449): E2294 Structure required on left side of . or .*

    the line of code it is giving it to i here

    pPacket->m_packetRec.pa cket.macDst[i] = pPCS->macDst[i];
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    It means that either

    pPacket->m_packetRec

    or

    pPacket->m_packetRec.pa cket

    is not a structure and therefore following it with a . is an error.

    Comment

    • mandogon
      New Member
      • Apr 2006
      • 31

      #3
      Originally posted by Banfa
      It means that either

      pPacket->m_packetRec

      or

      pPacket->m_packetRec.pa cket

      is not a structure and therefore following it with a . is an error.



      ok it seems that m_packetRec is not being picked up as a struc because i have that as a structure already what can i do to make it be read as a struc
      thanks in advance

      Comment

      Working...