#pragma once #include #include typedef struct stream { char *title; char *language; char *codec; bool is_default; bool is_forced; char *path; } stream; #define NULLSTREAM (struct stream) { \ NULL, \ NULL, \ NULL, \ false, \ false, \ NULL \ }