mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
[VCRUNTIME] Add vcruntime.h and related (mostly empty)
This is for compatibility with some 3rd-party code.
This commit is contained in:
parent
84344399b5
commit
ff2c7c8720
6 changed files with 22 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
* This file is part of the w64 mingw-runtime package.
|
||||
* No warranty is given; refer to the file DISCLAIMER within this package.
|
||||
*/
|
||||
#include <_mingw.h>
|
||||
#include <vcruntime.h>
|
||||
#include <specstrings.h>
|
||||
|
||||
#ifndef _INC_CRTDEFS
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
#error Only Win32 target is supported!
|
||||
#endif
|
||||
|
||||
#include <crtdefs.h>
|
||||
|
||||
#undef _CRT_PACKING
|
||||
#define _CRT_PACKING 8
|
||||
#pragma pack(push,_CRT_PACKING)
|
||||
|
|
6
sdk/include/vcruntime/vcruntime.h
Normal file
6
sdk/include/vcruntime/vcruntime.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <_mingw.h>
|
||||
#include <sal.h>
|
||||
#include <vadefs.h>
|
2
sdk/include/vcruntime/vcruntime_new_debug.h
Normal file
2
sdk/include/vcruntime/vcruntime_new_debug.h
Normal file
|
@ -0,0 +1,2 @@
|
|||
|
||||
#pragma once
|
9
sdk/include/vcruntime/vcruntime_startup.h
Normal file
9
sdk/include/vcruntime/vcruntime_startup.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
typedef enum _crt_argv_mode
|
||||
{
|
||||
_crt_argv_no_arguments,
|
||||
_crt_argv_unexpanded_arguments,
|
||||
_crt_argv_expanded_arguments,
|
||||
} _crt_argv_mode;
|
4
sdk/include/vcruntime/vcruntime_string.h
Normal file
4
sdk/include/vcruntime/vcruntime_string.h
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <vcruntime.h>
|
Loading…
Reference in a new issue