Beispiel #1
0
iCriticalSection::iCriticalSection( const iCharT* aname ) : iSyncObject( NULL )
{
	FillBlock8((uint8*)&m_CritSec,0,sizeof(m_CritSec));
	::InitializeCriticalSection( &m_CritSec );
}
Beispiel #2
0
//
// 8bit Block Filling
//
void FillBlock8Init (uint8 *dst, const uint8 src, uint32 size)
{
    FillBlock8 = FillBlock8Std;
	FillBlock8(dst,src,size);
}