mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:33:16 +00:00
[VCRUNTIME] Add initial intrin0.inl.h
This commit is contained in:
parent
41478e978c
commit
c70f741627
2 changed files with 30 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
#ifndef RC_INVOKED
|
||||
|
||||
#include <vcruntime.h>
|
||||
#include <intrin0.inl.h>
|
||||
#include <setjmp.h>
|
||||
#include <stddef.h>
|
||||
|
||||
|
|
29
sdk/include/vcruntime/intrin0.inl.h
Normal file
29
sdk/include/vcruntime/intrin0.inl.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* PROJECT: ReactOS SDK
|
||||
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
||||
* PURPOSE: Intriniscs used by the C++ Standard Library
|
||||
* COPYRIGHT: Copyright 2025 Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define __INTRIN0_INL_H_
|
||||
|
||||
#include <vcruntime.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
__int8 __iso_volatile_load8(const volatile __int8 *);
|
||||
__int16 __iso_volatile_load16(const volatile __int16 *);
|
||||
__int32 __iso_volatile_load32(const volatile __int32 *);
|
||||
__int64 __iso_volatile_load64(const volatile __int64 *);
|
||||
void __iso_volatile_store8(volatile __int8*, __int8);
|
||||
void __iso_volatile_store16(volatile __int16*, __int16);
|
||||
void __iso_volatile_store32(volatile __int32*, __int32);
|
||||
void __iso_volatile_store64(volatile __int64*, __int64);
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} // extern "C"
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue