Turn some variables static that are not used outside the source

file
This commit is contained in:
twinaphex 2020-09-21 00:52:32 +02:00
parent 599f338d74
commit b0c744c3d0

View File

@ -67,16 +67,16 @@
#endif
#ifdef HAVE_SAPI
static ISpVoice* pVoice = NULL;
static ISpVoice* pVoice = NULL;
#endif
#ifdef HAVE_NVDA
bool USE_POWERSHELL = false;
bool USE_NVDA = true;
static bool USE_POWERSHELL = false;
static bool USE_NVDA = true;
#else
bool USE_POWERSHELL = true;
bool USE_NVDA = false;
static bool USE_POWERSHELL = true;
static bool USE_NVDA = false;
#endif
bool USE_NVDA_BRAILLE = false;
static bool USE_NVDA_BRAILLE = false;
#ifndef SM_SERVERR2
#define SM_SERVERR2 89