| 1 | // Licensed to the .NET Foundation under one or more agreements. |
| 2 | // The .NET Foundation licenses this file to you under the MIT license. |
| 3 | // See the LICENSE file in the project root for more information. |
| 4 | //***************************************************************************** |
| 5 | // CrtWrap.h |
| 6 | // |
| 7 | // Wrapper code for the C runtime library. |
| 8 | // |
| 9 | //***************************************************************************** |
| 10 | |
| 11 | #ifndef __CrtWrap_h__ |
| 12 | #define __CrtWrap_h__ |
| 13 | |
| 14 | #include <stdint.h> |
| 15 | #include <windows.h> |
| 16 | #include <objbase.h> |
| 17 | #include <tchar.h> |
| 18 | #include "debugmacros.h" |
| 19 | #include <stdlib.h> |
| 20 | #include <malloc.h> |
| 21 | #include <wchar.h> |
| 22 | #include <stdio.h> |
| 23 | |
| 24 | #ifndef PUB |
| 25 | // PUB is defined to influence method visibility for some compilers. |
| 26 | #define PUB |
| 27 | #endif // !PUB |
| 28 | |
| 29 | #endif // __CrtWrap_h__ |
| 30 | |
| 31 | |