Microsoft Utilities Errors Help (utilerr.hlp) (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
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'
                                    -♦-