/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
1. Visual Studio 2005 (v. 8)
    http://www.codeproject.com/cpp/vcredists_x86.asp
    New visual studio is using special manifest files to link againist LibC
    library. Trying to link the VS2005 builded source in the standard way will
    lead to the error R6034.

    The files, of course, are automatically generated by VS2005. But then you
    are using the plugins compiled with VS2005 in application compiled with 
    legacy compiler, the nightmare began. Seems the main application is not
    aware of the manifest files and could not load them, but plugins still 
    require to load the C library in the modern way, otherwise their loading
    end ups with error message. Exactly that happens with MyODBC compiled
    with VS2005.
    
    Another interesting problem is mspdb80.dll. It should be in the PATH in 
    order to operate cl.exe compiler. However, having it in the path may
    prevent VS2005 IDE from compiling.