[MSVCRT20]
authorJérôme Gardou <jerome.gardou@reactos.org>
Sat, 23 Jul 2011 22:47:04 +0000 (22:47 +0000)
committerJérôme Gardou <jerome.gardou@reactos.org>
Sat, 23 Jul 2011 22:47:04 +0000 (22:47 +0000)
commit4b7b205f04ab8c34cbac73459b62b2a3e2231d91
tree95856b37b0f116c2e55996a9eca36f1ddf4a38ce
parent841762ca39d6c9370a482b6f8c0fbaad3e7a6ca8
[MSVCRT20]
- link to static crt instead of forwarding function to msvcrt.
As msvcrt, msvcrt20 exports some variable, marked as DATA in the def file. Forwarding them is not a good idea, since msvcrt would be initialized only if one of the forwarded function is called. We must keep those variables in our module. And as the forwarded functions might use the said variables, we can't really forward them, as they would not know which instance they should reference.

svn path=/trunk/; revision=52826
reactos/dll/win32/msvcrt20/CMakeLists.txt
reactos/dll/win32/msvcrt20/msvcrt20.spec
reactos/dll/win32/msvcrt20/stubs.c [new file with mode: 0644]