-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm using DCMTK library for reading Dicom files (Image format used in medical image processing.) I'm having a problem in compiling this DCMTK source code. DCMTK uses some additional external libraries (zlib, tiff, libpng, libxml2, libiconv). I know that all libraries should be generated with…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 possible with the system's msvcrt.dll (dll hell)? Application is targeted for Windows Server systems.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
My project is running fine, but its requirement for some DLLs means it cannot be simply dragged and dropped by the end user. The DLLs are not loaded when put side by side with my executable, because my executable is not an application, and its location is not in the few locations where Windows…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I was using the strlen method from msvcrt.dll in a .Net 3.5 project.
more specifically: private unsafe static extern int strlen( byte *pByte );
After migrating to .Net 4, if I use this function it throws me an PInvokeStackImbalance exception.
How can I import the .Net 3.5 msvcrt.dll? or fix this…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a C++ code compiled with Intel compiler, 32bit, in MS VC6 mode, so using either msvcrt.dll or msvcrtd.dll. The process makes heavy memory allocation and deallocation. I monitor the memory usage with WMI and look at VirtualSize and WorkingSetSize.
with debug runtime (msvcrtd.dll): virtual…
>>> More