9 lines
164 B
C
9 lines
164 B
C
#ifndef VY_HANDLES_H
|
|
#define VY_HANDLES_H
|
|
|
|
/* All handle types should contain a uint32_t index */
|
|
|
|
#define VY_IS_HANDLE_VALID(handle) ((handle).index != 0)
|
|
|
|
#endif
|