I recently set up a symbol server and added SrcSrv support to our build scripts so that we can easily debug crash dumps from the field and have WinDbg and/or the Visual Studio debugger get the correct
With the Debugging Tools for Windows you can run SSIndex.cmd against your symbol files and it will embed the command to retrieve each source code file from the TF server.We have a bunch of indexed fil
I am writing my own string copy function. The following works: char *src, *dest; src = (char *) malloc(BUFFSIZE);