#pragma once
#include <cstddef>
/// Maximum decoded byte length of one submitted text control.
inline constexpr std::size_t MAX_FORM_TEXT_FIELD_SIZE = 1024 * 1024;
/// Maximum aggregate decoded text bytes in one application form.
inline constexpr std::size_t MAX_FORM_TOTAL_TEXT_SIZE = 8 * 1024 * 1024;