rtengine/src/runtime/cross_sal.h
Kevin Trogant 8f52ea3d3a
Some checks failed
Ubuntu Cross to Win64 / Cross Compile with ming64 (1.4.0, ubuntu-latest) (push) Failing after 1m32s
Fixed linux -> windows cross compilation
2024-07-16 11:48:28 +02:00

18 lines
360 B
C

#ifndef RT_CROSS_SAL_H
#define RT_CROSS_SAL_H
/* mingw-w64 seems to miss some SAL annotations that are used by dxc etc.
* This header adds these.
*/
#ifndef RT_CROSS_LINUX_WINDOWS
#pragma warning Are you sure that you want to include this file ?
#endif
#define _Maybenull_
#define _In_opt_count_(n)
#define _In_bytecount_(n)
#define _In_count_(n)
#endif