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
13 lines
267 B
C
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;
|