Questions tagged [msvcrt]

MSVCRT is the Microsoft Visual C++ Runtime.

MSVCRT is the Microsoft Visual C++ Runtime. It is included in Microsoft Visual C++ Redistributable Package.

KB 2977003 lists supported Visual C++ runtime downloads from Visual C++ 2005 to 2015.

Visit C Run-Time Library Reference on MSDN to get more information.

483 questions
-2
votes
2 answers

Initializing a ref-to-ptr in a struct after malloc()

I'm facing a problem using VC++ and Debug CRT with a DLL in development. I have a struct like that, holding some references. struct DATA { TA*& a; TB*& b; TC*& c; TD*& d; char** chars; int num_chars; private: //…
Dominik P
  • 117
  • 10
-3
votes
3 answers

Assembly code of a hello world program in C

Here is a sample code of hello world program: #include int main(void) { printf("Hello, world!\n"); return 0; } This is a disassembly of object file I've got: File Type: COFF OBJECT main: 0000000000000000: 48 83 EC 28 …
Tracy
  • 59
  • 1
  • 8
-8
votes
2 answers

Does WINE implement "_printf" and similar functions in MSVCRT?

Here is an example program that illustrates my problem, it can be compiled using FlatAssembler without using a linker: format PE console entry start include 'win32a.inc' section '.text' code executable start: mov dword [esp],_output1 call…
FlatAssembler
  • 667
  • 7
  • 30
1 2 3
32
33