Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
20
Src/replicant/nsapev2/flags.h
Normal file
20
Src/replicant/nsapev2/flags.h
Normal 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,
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue