Mercurial > libanimone
view src/win.cc @ 1:0c3cc9e6cd84
*: improve multiple things
e.g. making some strings.cc functions modify strings in-place,
improving m4_ax_have_qt.m4 code, making anime_db.cc rely on
std::optional rather than std::shared_ptr (which was stupid
anyway)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 11 Apr 2024 10:15:57 -0400 |
parents | a76fa32bdc92 |
children | 97ea6a3e1954 |
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