gsr-game-tracker: track native games and emulators (from ananicy-rules)

This commit is contained in:
dec05eba
2026-04-28 09:47:03 +02:00
parent e3ccfed987
commit 1adbb13ca5
5 changed files with 310 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
#ifndef NATIVE_GAMES_H
#define NATIVE_GAMES_H
#include <stdbool.h>
#include <stddef.h>
/* Checks for native games (or emulators) that are not steam games and neither ends with .x86_64, .x86 or .x64 */
bool is_process_name_native_game(const char *process_name, size_t size);
#endif /* NATIVE_GAMES_H */