Adding template project

This commit is contained in:
2026-07-17 20:18:38 -05:00
commit 0266d84572
103 changed files with 72129 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#pragma once
#ifndef RMLUI_DISABLE_INCLUDE_XLIB
#include <X11/Xlib.h>
// The None and Always defines from X.h conflicts with RmlUi code base,
// use their underlying constants where necessary.
#ifdef None
// Value 0L
#undef None
#endif
#ifdef Always
// Value 2
#undef Always
#endif
#endif