rtengine/src/runtime/handles.h
2023-11-22 11:23:52 +01:00

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