aswm/src/create.c
Paul Breugnot cb31369947 🎉 Let's go
A minimalistic but working X XM POC.
2024-12-07 10:13:17 +01:00

10 lines
189 B
C

#ifndef ASWM_CREATE
#define ASWM_CREATE
#include "create.h"
#include <stdio.h>
void OnCreateNotify(const XCreateWindowEvent* e) {
printf("XCreateWindowEvent %lu\n", e->window);
}
#endif