[VCRUNTIME] Add missing definitions

This commit is contained in:
Timo Kreuzer 2024-10-13 19:13:36 +03:00
parent e202420456
commit e5633f656f
3 changed files with 33 additions and 0 deletions

View file

@ -1,6 +1,14 @@
/*
* PROJECT: ReactOS SDK
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: Common definitions
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
*/
#pragma once
#define _VCRUNTIME_H
#include <_mingw.h>
#include <sal.h>
#include <vadefs.h>
@ -70,6 +78,12 @@ _CRT_BEGIN_C_HEADER
#endif
#endif
#ifdef _BUILD_STD_MODULE
#define _VCRT_EXPORT_STD export
#else
#define _VCRT_EXPORT_STD
#endif
#ifdef __GNUC__
#define _CRT_DEPRECATE_TEXT(_Text) __attribute__ ((deprecated))
#elif defined(_MSC_VER)