Skip to content

Commit

Permalink
Add DecoderProviderIdBase and EncoderProviderIdBase definitions for N…
Browse files Browse the repository at this point in the history
…anaZip.Codecs.
  • Loading branch information
MouriNaruto committed Sep 25, 2024
1 parent 17796b2 commit 23a94f7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions NanaZip.Codecs/NanaZip.Codecs.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ namespace NanaZip::Codecs
* @remark 0x4823374B is little-endian representation of K7#H (H -> Hash)
*/
const UINT64 HashProviderIdBase = 0x4823374B00000000;

/**
* @brief The ID base value of NanaZip Decoder Providers.
* @remark 0x4423374B is little-endian representation of K7#D (D -> Decoder)
*/
const UINT64 DecoderProviderIdBase = 0x4423374B00000000;

/**
* @brief The ID base value of NanaZip Encoder Providers.
* @remark 0x4523374B is little-endian representation of K7#E (E -> Encoder)
*/
const UINT64 EncoderProviderIdBase = 0x4523374B00000000;
}

namespace NanaZip::Codecs::Hash
Expand Down

0 comments on commit 23a94f7

Please sign in to comment.