Mercurial > minori
view dep/animia/src/fd.cc @ 229:adc20fa321c1
theme: force Fusion style on platforms other than Win32 or OS X
I was reluctant to do this, but most of the other styles just
look like pure shite regardless of whether I force a stylesheet
on them or not. KDE's style is actually hilariously bad paired
with my stylesheet, so I've decided to also make the stylesheet
Windows-specific as well, because that's really the only platform
where it makes sense in the first place.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 10 Jan 2024 21:23:57 -0500 |
parents | 71832ffe425a |
children |
line wrap: on
line source
#include "animia/fd.h" #ifdef WIN32 # include "animia/fd/win32.h" #endif #ifdef LINUX # include "animia/fd/proc.h" #endif #ifdef MACOSX # include "animia/fd/xnu.h" #endif #ifdef LIBUTIL # include "animia/fd/libutil.h" #endif #ifdef LIBKVM # include "animia/fd/kvm.h" #endif namespace animia::internal { bool EnumerateOpenFiles(const std::set<pid_t>& pids, open_file_proc_t open_file_proc) { bool success = false; #ifdef WIN32 success ^= win32::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef LINUX success ^= proc::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef MACOSX success ^= xnu::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef LIBUTIL success ^= libutil::EnumerateOpenFiles(pids, open_file_proc); #endif #ifdef LIBKVM success ^= kvm::EnumerateOpenFiles(pids, open_file_proc); #endif return success; } bool EnumerateOpenProcesses(process_proc_t process_proc) { bool success = false; #ifdef WIN32 success ^= win32::EnumerateOpenProcesses(process_proc); #endif #ifdef LINUX success ^= proc::EnumerateOpenProcesses(process_proc); #endif #ifdef MACOSX success ^= xnu::EnumerateOpenProcesses(process_proc); #endif #ifdef LIBUTIL success ^= libutil::EnumerateOpenProcesses(process_proc); #endif #ifdef LIBKVM success ^= kvm::EnumerateOpenProcesses(process_proc); #endif return success; } } // namespace animia::internal