mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 05:38:31 +00:00
[VCRUNTIME] Add missing definitions
This commit is contained in:
parent
e202420456
commit
e5633f656f
3 changed files with 33 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue