26 lines
369 B
C++
26 lines
369 B
C++
|
#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;
|
||
|
}
|