blob: 6b185094705f9ccd2506c8c1ee34cd4adf7a0b20 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
// Disable these features on xbox for now
#if 0
# define VOID_IMPL ;
# define RET_IMPL(value) ;
#else
# define VOID_IMPL {}
# define RET_IMPL(value) { return value; }
#endif
|