#pragma once #ifndef CPPUTILS_SIZEDDATA_H #define CPPUTILS_SIZEDDATA_H struct SizedData { unsigned char* data; size_t size; }; #endif