Mercurial > minori
view dep/animone/src/win.cc @ 291:9a88e1725fd2
*: refactor lots of stuff
I forgot to put this into different commits, oops!
anyway, it doesn't really matter *that* much since this is an
unfinished hobby project anyway. once it starts getting stable
commit history will be more important, but for now it's not
that big of a deal
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 12 May 2024 16:31:07 -0400 |
parents | 65df2813d0de |
children | b1f625b0227c |
line wrap: on
line source
#include "animone/win.h" #ifdef WIN32 # include "animone/win/win32.h" #endif #ifdef MACOSX # include "animone/win/quartz.h" #endif #ifdef X11 # include "animone/win/x11.h" #endif namespace animone::internal { bool EnumerateWindows(window_proc_t window_proc) { bool success = false; #ifdef WIN32 success |= win32::EnumerateWindows(window_proc); #endif #ifdef MACOSX success |= quartz::EnumerateWindows(window_proc); #endif #ifdef X11 success |= x11::EnumerateWindows(window_proc); #endif return success; } } // namespace animone::internal