win32

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6cfbd07456ad3731a9322c571d46ba4ebc29475e
parent e7be9552b798a7772e4016fd65aeb80187f2c7ec
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Wed, 17 Dec 2025 07:42:27 +0900

create win32. BudMatch

Diffstat:
Mwin32.c | 9++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/win32.c b/win32.c @@ -22,8 +22,15 @@ int main(void) { CWEventMask, &attr); XMapWindow(display, window); - XSync(display, window); + Window window32 = XCreateWindow(display, DefaultRootWindow(display), + 0, 0, 1, 1, 0, + 32, + InputOutput, + DefaultVisual(display, screen), + 0, NULL); + + XSync(display, window); int quit = 0; XEvent event; while (!quit) {