Fix warnings

This commit is contained in:
momo5502
2025-03-18 19:50:13 +01:00
parent 2a9a8eda35
commit ef8a9dae6e
14 changed files with 58 additions and 18 deletions

View File

@@ -2,6 +2,8 @@
#include <cstdint>
// NOLINTBEGIN(modernize-use-using)
#ifdef OS_WINDOWS
#define WIN32_LEAN_AND_MEAN
@@ -51,10 +53,10 @@ using BYTE = std::uint8_t;
using WORD = std::uint16_t;
#define UCHAR unsigned char
#define UCHAR uint8_t
#define BOOLEAN UCHAR
using CSHORT = short;
using CSHORT = int16_t;
using USHORT = WORD;
#define DUMMYSTRUCTNAME
@@ -63,3 +65,5 @@ using USHORT = WORD;
#define TRUE 1
#define FALSE 0
#endif
// NOLINTEND(modernize-use-using)