/* util9p/nut.h - 9P NUT video streaming * * Copyright (C) 2025 Luke T. Shumaker * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _UTIL9P_NUT_H_ #define _UTIL9P_NUT_H_ #include #define NUT_FB_W 360 #define NUT_FB_H 576 struct nut_file { char *name; uint64_t pathnum; const uint8_t *framebuffer; }; LO_IMPLEMENTATION_H(lib9p_srv_file, struct nut_file, nut_file); #endif /* _UTIL9P_NUT_H_ */