msvcrt
C++ double division by 0.0 versus DBL_MIN
When finding the inverse square root of a double, is it better to clamp invalid non-positive inputs at 0.0 or MIN_DBL? (In my example below doubleb may end up being negative due to floating point roun[详细]
2023-01-01 10:06 分类:问答visual c++ 2010 link against older runtime?
Sorry if this has been asked. Just li开发者_如何学编程ke I can select in C# project that I want it to build for .NET 2.0 runtime, is it possible for native c++ project to be built against older CRT,[详细]
2022-12-29 16:34 分类:问答in .Net 4: PInvokeStackImbalance Exception
I was using the strlen function from msvcrt.dll in a .Net 3.5 project. More specifically: private unsafe static extern int strlen( byte *pByte );[详细]
2022-12-28 21:37 分类:问答CRT, do we still need to redistribute it?
Do we still need to bother with vcredist.exe when distributing windows native applications ? Does any of these come bundled with Win-7 ?[详细]
2022-12-27 11:01 分类:问答Problem with Visual C++ program-- can't find the Debug CRT
I have a friend who\'s taking over a Visual C++ project from me and is having trouble running it. It\'s a graphics application and it uses the Qt GUI library.The reason I mention this is because of th[详细]
2022-12-21 12:03 分类:问答LoadLibrary() fails to load DLL with manifest and private assembly
I am working on a Windows applica开发者_开发知识库tion (EXE) that uses multiple DLLs.Development is in VCExpress 2005 (VC 8.0), using C only.[详细]
2022-12-21 10:40 分类:问答StaticCRT(LIBCMT(D)) and DynamicCRT(MSVCRT(D)) conflict
I am developing a project which uses third party dlls and libraries. I want to build my project using static CRT (LIBCMTD) as I wish to run my application in \"IBM purifier\". However, the third party[详细]
2022-12-19 19:19 分类:问答Private Unmanaged Side by Side Assembly Problem
We have a large MFC application that uses a number of DLLs. So far we have been using vcredist_x86.exe to install MFC and the CRT into the unmanaged side by side assembly cache (C:\\Windows\\WinSxS).[详细]
2022-12-19 03:01 分类:问答How do I find the cause of this linker error?
After going through a lengthy process to rename a project开发者_Go百科, my DLL project will not build in Debug mode (Release builds work):[详细]
2022-12-17 12:50 分类:问答Does msvcrt.dll use a linear congruential generator for its rand() function?
I am trying to predict the output of a program that uses msvcrt\'s rand() function for generating the face 开发者_StackOverflowof three dice. I believe the code is something like:[详细]
2022-12-14 21:53 分类:问答