Microsoft Utilities Errors Help (utilerr.hlp) (Topic list)
L2045
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     LINK error L2045
 
     'segment' : segment with > 1 class name not allowed with /INCR
 
     The program defined a segment more than once, giving the segment
     different class names. This is incompatible with the /INCR option.
     This error appears only with assembly-language programs.
 
     For example, the following two statements define two distinct
     segments with the same name but different classes:
 
          _BSS segment 'BSS'
          _BSS segment 'DATA'
                                    -♦-