DataView.hpp 129 B

12345678910
  1. #pragma once
  2. #include <stddef.h>
  3. namespace QuickMedia {
  4. struct DataView {
  5. char *data;
  6. size_t size;
  7. };
  8. }