Some checks failed
Ubuntu Cross to Win64 / Cross Compile with ming64 (1.4.0, ubuntu-latest) (push) Failing after 1m32s
18 lines
360 B
C
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
|