Mercurial > minori
view dep/animia/include/animia.h @ 141:14626691d0e1
linux: stop the preprocessor from mangling our definitions
really?
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 12 Nov 2023 17:12:09 -0500 |
parents | 478f3b366199 |
children | d8a61e7e2a36 |
line wrap: on
line source
#ifndef __animia__animia_h #define __animia__animia_h #include "animia/media.h" #include "animia/player.h" #include "animia/types.h" namespace animia { /* pid_t should be DWORD on windows, and defined by the system anywhere else */ struct Process { internal::pid_t pid = 0; std::string name; }; struct Window { unsigned int id = 0; std::string class_name; std::string text; // title bar text }; struct Result { Player player; Process process; //Window window; std::vector<Media> media; }; bool GetResults(const std::vector<Player>& players, std::vector<Result>& results); } // namespace Animia #endif // __animia__animia_h