This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
temporary-satori-hole/include/macros.h

21 lines
494 B
C
Raw Permalink Normal View History

2023-12-27 00:35:22 +00:00
#ifndef H_SATORI_VERSION
#define H_SATORI_VERSION
#define SATORI_NAME "Satori"
#ifndef SATORI_VERSION
# define SATORI_VERSION "20130127"
#endif
#define SATORI_USERAGENT (SATORI_NAME "/" SATORI_VERSION " (+https://fii.moe/satori)")
#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32) || defined(_WIN64)
# define SATORI_OS_WIN
#elif defined(__APPLE__)
# define SATORI_OS_MAC
#elif defined(__linux) || defined(__linux__) || defined(linux)
# define SATORI_OS_LIN
#endif
#endif