0

I'm a newbie, I've heard that Visual C++ redistributable are for apps that are developed in VS C++ IDEs (newer than 6.0 version). But what if I only write applications that are buid in win32 projects, with purely RAW win32 functions (no MFC, no .Net), then do I need them?

  • Check out https://github.com/leepa/libctiny. I use a variant of this in my self-extracting installer to keep the size down. – Paul Sanders Apr 23 '18 at 21:52

1 Answers1

0

Theoretically yes, this is possible. However, be aware that the CRT provides many conveniences that you may be used to. The entry point will have to be replaced, functions that perform string operation will have to be reimplemented, and even memory management operations like malloc and new will have to be replaced with the Win32 equivalents (HeapAlloc and such). Your other option is to statically link the CRT.

mnistic
  • 10,866
  • 2
  • 19
  • 33