Monado OpenXR Runtime
|
Expose std::vector to C. More...
#include <stddef.h>
Go to the source code of this file.
Data Structures | |
struct | u_vector_int |
struct | u_vector_float |
Macros | |
#define | U_VECTOR_DECLARATION(TYPE) |
Functions | |
struct u_vector_int | u_vector_int_create () |
void | u_vector_int_push_back (struct u_vector_int uv, int e) |
int | u_vector_int_at (struct u_vector_int uv, size_t i) |
void | u_vector_int_destroy (struct u_vector_int *uv) |
struct u_vector_float | u_vector_float_create () |
void | u_vector_float_push_back (struct u_vector_float uv, float e) |
float | u_vector_float_at (struct u_vector_float uv, size_t i) |
void | u_vector_float_destroy (struct u_vector_float *uv) |
Expose std::vector to C.
#define U_VECTOR_DECLARATION | ( | TYPE | ) |