rtengine/src/runtime/cross_sal.h
Kevin Trogant 92fbe1ece4
All checks were successful
Ubuntu Cross to Win64 / Cross Compile with ming64 (1.4.0, ubuntu-latest) (push) Successful in 2m13s
refactor(build): Using meson devenv makes copying libgcc unnecessary while cross-compiling
2024-07-23 10:49:39 +02:00

29 lines
476 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
#ifndef _Maybenull_
#define _Maybenull_
#endif
#ifndef _In_opt_count_
#define _In_opt_count_(n)
#endif
#ifndef _In_bytecount_
#define _In_bytecount_(n)
#endif
#ifndef _In_count_
#define _In_count_(n)
#endif
#endif