mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCEMP-Server.git
synced 2026-06-03 09:54:59 +00:00
29 lines
419 B
C
29 lines
419 B
C
#pragma once
|
|
#ifndef _In_
|
|
#define _In_
|
|
#endif
|
|
#ifndef _Out_
|
|
#define _Out_
|
|
#endif
|
|
#ifndef _Inout_
|
|
#define _Inout_
|
|
#endif
|
|
#ifndef _In_opt_
|
|
#define _In_opt_
|
|
#endif
|
|
#ifndef _Out_opt_
|
|
#define _Out_opt_
|
|
#endif
|
|
#ifndef _Inout_opt_
|
|
#define _Inout_opt_
|
|
#endif
|
|
#ifndef _In_z_
|
|
#define _In_z_
|
|
#endif
|
|
#ifndef _Printf_format_string_
|
|
#define _Printf_format_string_
|
|
#endif
|
|
#ifndef _Analysis_assume_
|
|
#define _Analysis_assume_(x)
|
|
#endif
|