T_MAKEFOURCC.T_MAKEFOURCC

Undocumented in source.
template T_MAKEFOURCC(ubyte ch0, ubyte ch1, ubyte ch2, ubyte ch3)
version(Windows)
const
auto T_MAKEFOURCC = cast(uint)ch0 | cast(uint)(ch1 << 8) | cast(uint)(ch2 << 16) | cast(uint)(ch3 << 24);

Meta