Mercurial > libanimone
view src/win.cc @ 13:efbb8316395f
dep/animone: clean up OS X code
GetProcessName() really belongs in fd.cc after removing the
stupid unnecessary LaunchServices code that was stolen from...
some library :)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 13 May 2024 14:15:47 -0400 |
parents | 52927e5118f9 |
children | 27b988a1048c |
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