mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 10:42:21 +00:00
36 lines
673 B
C++
36 lines
673 B
C++
#include "BruteUtils.h"
|
|
#include "STh.h"
|
|
#include "externData.h"
|
|
|
|
void BruteUtils::BConInc()
|
|
{
|
|
++BA;
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
|
__asm
|
|
{
|
|
lock inc BrutingThrds;
|
|
};
|
|
#else
|
|
asm("lock incl BrutingThrds");
|
|
#endif
|
|
|
|
stt->doEmitionChangeBA(QString::number(BrutingThrds));
|
|
}
|
|
|
|
void BruteUtils::BConDec()
|
|
{
|
|
if(BrutingThrds > 0)
|
|
{
|
|
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32) && !defined(__CYGWIN__)
|
|
__asm
|
|
{
|
|
lock dec BrutingThrds;
|
|
};
|
|
#else
|
|
asm("lock decl BrutingThrds");
|
|
#endif
|
|
}
|
|
|
|
stt->doEmitionChangeBA(QString::number(BrutingThrds));
|
|
}
|