This adds new features (such as themes) alongside fixing numerous bugs. This should be kept up-to-date with upstream more often and changes to it should be PR'd back to its main repo.
13 lines
212 B
C++
13 lines
212 B
C++
#pragma once
|
|
|
|
typedef struct _XDisplay Display;
|
|
typedef unsigned long XID;
|
|
typedef unsigned long VisualID;
|
|
typedef XID Window;
|
|
|
|
class X11NativeHandle
|
|
{
|
|
public:
|
|
Display* display = nullptr;
|
|
Window window = 0;
|
|
};
|