![]() |
|
Uniot Core
|
| 0.8.1 |
Creates a four-character code (FourCC) value from template parameters. More...
#include <Common.h>
Static Public Attributes | |
| static const uint32_t | Value = (((((d << 8) | c) << 8) | b) << 8) | a |
Creates a four-character code (FourCC) value from template parameters.
FourCC is commonly used for creating unique identifiers from four ASCII characters. This template packs four 8-bit integers into a single 32-bit integer.
| a | First character (least significant byte) |
| b | Second character |
| c | Third character |
| d | Fourth character (most significant byte) |
|
static |