xwin: ddraw: Moved the include guard to its correct location.

The include guard in this file has been incorrectly moved up breaking
the #include_next behavior on MS Windows builds.
Moved it to its correct location.

Signed-off-by: b-aaz <b-aazbsd@proton.me>
This commit is contained in:
b-aaz
2025-12-07 18:42:18 +00:00
committed by Enrico Weigelt
parent 7f7efe8195
commit 2c9d6b38d1

View File

@@ -1,11 +1,12 @@
#ifndef __XWIN_DDRAW_H
#define __XWIN_DDRAW_H
#ifdef __MINGW64_VERSION_MAJOR
#include_next <ddraw.h>
#define __XWIN_DDRAW_H
#endif
#ifndef __XWIN_DDRAW_H
#define __XWIN_DDRAW_H
#include <winnt.h>
#include <wingdi.h>
#include <objbase.h>