Mercurial > minori
view dep/animia/src/fd.cc @ 149:e41505d24733
players: filter out web browsers, they aren't even supported in animia yet
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 14 Nov 2023 13:40:11 -0500 |
parents | d8a61e7e2a36 |
children | ffa535b6d630 |
line wrap: on
line source
#include "animia/fd.h" #ifdef ANIMIA_ON_WIN32 # include "animia/fd/win32.h" #elif defined(ANIMIA_ON_LINUX) # include "animia/fd/linux.h" #elif defined(ANIMIA_ON_UNIX) # include "animia/fd/bsd.h" #endif namespace animia::internal { /* really stupid hack to get fd to point to the right thing */ #ifdef ANIMIA_ON_WIN32 win32::Win32FdTools os_fd; #elif defined(ANIMIA_ON_LINUX) linux::LinuxFdTools os_fd; #elif defined(ANIMIA_ON_UNIX) unix::UnixFdTools os_fd; #else BaseFdTools os_fd; #endif BaseFdTools& fd = os_fd; }