Files
xbanan/xbanan/Types.h
Oskari Alaranta 2ddd67dede Start work on making xbanan portable
This will allow usage of xbanan on non banan-os platforms. I added a
"native" SDL2 port so it can be used without the window manager
2026-06-01 01:27:49 +03:00

13 lines
267 B
C

#pragma once
#include <stdint.h>
using ATOM = uint32_t;
using BITGRAVITY = uint32_t;
using COLORMAP = uint32_t;
using CURSOR = uint32_t;
using PIXMAP = uint32_t;
using VISUALID = uint32_t;
using WINDOW = uint32_t;
using WINGRAVITY = uint32_t;