0
votes
3answers
42 views
How to disable buffer overflow checking in the Visual C++ Runtime?
i, and a few thousand other people, are getting an error being thrown by the Microsoft Visual C++ Runtime:
Which for the benefit of search engines, says:
Microsoft Visual C++ R …
0
votes
2answers
120 views
.NET Application that uses Tessnet2 fails
Hi,
I have an app that uses Tessnet2. The application fails when I try to call its Init method.
The failure is just awful - no exception (ANY), no any trace of error, not even "Se …
4
votes
3answers
518 views
Should I redistribute msvcrt.dll with my application?
Should I redistribute msvcrt.dll with my application and use the private dll if some of the application's libs dynamically depend on msvcrt.dll? I.e. are any incompatibility issues …
0
votes
2answers
558 views
vcredist_x86.dll and version 8.0.50727.4053
Hello,
Visual C++ 2005 I build on my system use CRT DLLs version 8.0.50727.4053. I believe it is the latest one and was automatically updated by Windows.
On user systems, this ve …
0
votes
2answers
68 views
How can I find out what makes my application mix the statically and dynamically linked CRT
Sorry for the long post that follows.
I know that it is not a good idea to mix the statically linked and dynamically linked C and C++ runtimes supplied by Microsoft. Our applicati …
0
votes
1answer
24 views
Working around fls limitations with too many statically linked CRTs?
When loading external DLLs (not under our control) via LoadLibrary, we're hitting a problem where the statically linked CRT in those DLLs are failing to allocate fiber-local storag …
1
vote
1answer
938 views
Side-by-side configuration error (Microsoft.VC80.CRT v8.0.50608.0)
I have an assembly with the following manifest embedded:
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAsse …
2
votes
6answers
614 views
Should I compile with /MD or /MT ?
In Visual Studio, there's the compile flags /MD and /MT which let you choose which kind of C runtime library you want.
I understand the difference in implementation, but I'm still …
2
votes
1answer
83 views
Different versions of msvcrt in ctypes
In Windows, the ctypes.cdll.msvcrt object automatically exists when I import the ctypes module, and it represents the msvcrt Microsoft C++ runtime library according to the docs.
H …
1
vote
1answer
133 views
Using Gcc on Win32 and linking to msvcrt.dll
I know microsoft recommends against linking to the msvcrt.dll, so please spare me from that warning. They do it all the time in their software (like WinDbg) and they won't introduc …
0
votes
1answer
484 views
How to build QTcore4.dll without dependency to MSVCx80.dll?
Dears,
I have a windows screensaver that I want to recompile using the QT libraries, so that I can make available for more platforms.
I am facing problems with the deployment on V …
0
votes
1answer
140 views
C-based console app crashes when run from cmd.exe, runs fine in VS2008 debugger?
Not sure what's going on here.
I have an Windows console app written in C. When I run it from within VS2008, it runs fine. If I run it from the cmd.exe prompt, it crashes, usuall …
0
votes
2answers
140 views
Win XP msvcrt crashes
Do any one know why an application that always ran on Windows XP now suddenly crashes the msvcrt.dll?
There were only minor changes made to the threading classes, which was done u …
1
vote
1answer
596 views
Can’t find MSVCP80.dll (side by side problem?)
Hi,
when I try to start the release-version of my project from visual studio 2005 (SP1) I get the following error message:
"This application has failed to start because MSVCP80.d …
0
votes
2answers
150 views
zlib + masm
Can zlib be used with masm without all the c runtime libraries such as msvcrt.dll and many others?
If so, can you tell me how?
