mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2025-12-26 14:41:14 +00:00
15 lines
299 B
C++
15 lines
299 B
C++
/**
|
|
* @file globals.cpp
|
|
* @brief Definitions for globally accessible variables and functions.
|
|
*/
|
|
// local includes
|
|
#include "globals.h"
|
|
|
|
safe::mail_t mail::man;
|
|
thread_pool_util::ThreadPool task_pool;
|
|
bool display_cursor = true;
|
|
|
|
#ifdef _WIN32
|
|
nvprefs::nvprefs_interface nvprefs_instance;
|
|
#endif
|