1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2024-11-13 18:00:49 +01:00

chore(dev): Disable formatting on some files to prevent header resorting

This leads to compiler errors as windows.h is expected to be
the first header included for other windows related header files.
This commit is contained in:
icex2 2023-03-21 23:59:36 +01:00 committed by icex2
parent c2104e7758
commit 34aca9dc2a
3 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,8 @@
// clang-format off
// Don't format because the order is important here
#include <windows.h>
#include <tlhelp32.h>
// clang-format on
#include <assert.h>
#include <stdbool.h>

View File

@ -1,7 +1,10 @@
#define LOG_MODULE "jbhook-mixer"
// clang-format off
// Don't format because the order is important here
#include <windows.h>
#include <mmsystem.h>
// clang-format on
#include "hook/table.h"

View File

@ -1,7 +1,10 @@
#define LOG_MODULE "jbhook-mixer"
// clang-format off
// Don't format because the order is important here
#include <windows.h>
#include <mmsystem.h>
// clang-format on
#include "hook/table.h"