Closed walbourn closed 1 month ago
Originally I used DWORD for flags. When I removed Windows-specific types, I changed it to unsigned long to keep the signature the same. The ask is to use uint32_t instead which is more consistent on Windows vs. Linux.
DWORD
unsigned long
uint32_t
Also removed 'extra-semi' for macro.
Related to https://github.com/microsoft/DirectXTex/issues/443
Originally I used
DWORD
for flags. When I removed Windows-specific types, I changed it tounsigned long
to keep the signature the same. The ask is to useuint32_t
instead which is more consistent on Windows vs. Linux.Also removed 'extra-semi' for macro.