Leaked source code of windows server 2003
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.
|
|
//=============================================================================
//
// 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; };
|