Ajout du GUI

This commit is contained in:
thatscringebro
2022-08-08 16:31:52 -04:00
parent db362ccdca
commit abd15f28b6
851 changed files with 99957 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
include "window_attrs.pxi"
from libc.stdint cimport uintptr_t
IF USE_WAYLAND:
cdef class WindowInfoWayland:
cdef wl_display *display
cdef wl_surface *surface
cdef wl_shell_surface *shell_surface
IF USE_X11:
cdef class WindowInfoX11:
cdef Display *display
cdef Window window
IF UNAME_SYSNAME == 'Windows':
cdef class WindowInfoWindows:
cdef HWND window
cdef HDC hdc