You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1005 B
45 lines
1005 B
//=============================================================================
|
|
//
|
|
// MODULE: ASN1IntegerSeq.cxx
|
|
//
|
|
// Description:
|
|
//
|
|
// Implementation of integer sequence parsing logic
|
|
//
|
|
// Modification History
|
|
//
|
|
// Mark Pustilnik Date: 07/09/02 - created
|
|
//
|
|
//=============================================================================
|
|
|
|
#include "ASN1Parser.hxx"
|
|
|
|
DWORD
|
|
ASN1ParserIntegerSequence::DisplayCollectedValues(
|
|
IN ASN1FRAME * Frame,
|
|
IN ULONG Length,
|
|
IN ULPBYTE Address
|
|
)
|
|
{
|
|
DWORD dw = ERROR_SUCCESS;
|
|
|
|
UNREFERENCED_PARAMETER( Length );
|
|
UNREFERENCED_PARAMETER( Address );
|
|
|
|
for ( ULONG i = 0; i < QueryCollectedCount(); i++ )
|
|
{
|
|
dw = Display(
|
|
Frame,
|
|
QueryCollectedValue( i ),
|
|
m_hPropertyInteger,
|
|
0
|
|
);
|
|
|
|
if ( dw != ERROR_SUCCESS )
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
return dw;
|
|
};
|