26 lines
369 B
C++
Executable File
26 lines
369 B
C++
Executable File
#include "globVars.h"
|
|
|
|
static int CoinCheckerType;
|
|
|
|
void globVar_SetCoinChecker(int checkerTyp)
|
|
{
|
|
CoinCheckerType=checkerTyp;
|
|
}
|
|
|
|
int globVar_GetCoinChecker(void)
|
|
{
|
|
return CoinCheckerType;
|
|
}
|
|
|
|
static int billReaderType;
|
|
|
|
void globVar_SetBna(int bnaTyp)
|
|
{
|
|
billReaderType=bnaTyp;
|
|
}
|
|
|
|
int globVar_GetBna(void)
|
|
{
|
|
return billReaderType;
|
|
}
|