Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -0,0 +1,20 @@
#pragma once
#include "foundation/error.h"
namespace APEv2
{
/*
http://wiki.hydrogenaudio.org/index.php?title=Ape_Tags_Flags
*/
enum
{
/* flags for header or item */
FLAG_READONLY = 1,
/* header/footer specific flags */
FLAG_HEADER_HAS_HEADER = (1 << 31),
FLAG_HEADER_NO_FOOTER = (1 << 30),
FLAG_HEADER_IS_HEADER = (1 << 29),
FLAG_HEADER_ENCODE_MASK = FLAG_READONLY|FLAG_HEADER_HAS_HEADER|FLAG_HEADER_NO_FOOTER,
};
}