forked from flash/temporary-satori-hole
21 lines
494 B
C
21 lines
494 B
C
|
#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
|