C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2836
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2836
 
     cannot export 'identifier': a previous declaration did not export
     it
 
     The given identifier was declared to be exported, but a previous
     declaration did not export it.
 
     All declarations of a given identifier must be either external or
     nonexternal.
 
     The following is an example of this error:
 
          extern int i;         // i not exported
          int    __export i;    // error, i exported
                                    -♦-