12345678910111213141516171819202122232425262728293031323334353637 |
- #pragma once
- #ifndef TRUE
- #define TRUE 1
- #endif
- #ifndef ON
- #define ON 1
- #endif
- #ifndef FALSE
- #define FALSE 0
- #endif
- #ifndef OFF
- #define OFF 0
- #endif
- #cmakedefine USE_XDG
- #define OAUTH_BASE_URL "@OAUTH_BASE_URL@"
- #define TWITCH_ENABLED @TWITCH_ENABLED@
- #define TWITCH_CLIENTID "@TWITCH_CLIENTID@"
- #define TWITCH_HASH 0x@TWITCH_HASH@
- #define RESTREAM_ENABLED @RESTREAM_ENABLED@
- #define RESTREAM_CLIENTID "@RESTREAM_CLIENTID@"
- #define RESTREAM_HASH 0x@RESTREAM_HASH@
- #define YOUTUBE_ENABLED @YOUTUBE_ENABLED@
- #define YOUTUBE_CLIENTID "@YOUTUBE_CLIENTID@"
- #define YOUTUBE_SECRET "@YOUTUBE_SECRET@"
- #define YOUTUBE_CLIENTID_HASH 0x@YOUTUBE_CLIENTID_HASH@
- #define YOUTUBE_SECRET_HASH 0x@YOUTUBE_SECRET_HASH@
- #define DEFAULT_THEME "Yami"
|