When linking a Visual C++ 6.0 application with NSS and NSPR static libraries
obtained from the mozilla.org web site, are there any guidelines or
recommendations for properly configuring the development environment to
avoid "unresolved external symbol" link errors (i.e., "... error LNK2001:
unresolved external symbol ..."). 
I suspect that this error is caused by: 
        1. calling C functions from a C++ application, 
        2. multiple prototype definitions in the include files. 
                int foo; 
                extern int foo;

Reply via email to