Initial revision

This commit is contained in:
Don BURNS
2001-01-10 16:32:10 +00:00
parent 7c12eb9361
commit 70208ebc06
461 changed files with 70936 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
// SwitchRecord.cpp
#include "flt.h"
#include "Registry.h"
#include "SwitchRecord.h"
using namespace flt;
////////////////////////////////////////////////////////////////////
//
// SwitchRecord
//
////////////////////////////////////////////////////////////////////
RegisterRecordProxy<SwitchRecord> g_SwitchProxy;
SwitchRecord::SwitchRecord()
{
}
// virtual
SwitchRecord::~SwitchRecord()
{
}
void SwitchRecord::endian()
{
SSwitch *pSSwitch = (SSwitch*)getData();
ENDIAN( pSSwitch->dwCurrentMask );
ENDIAN( pSSwitch->diWordsInMask );
ENDIAN( pSSwitch->diMasks );
}