47 MemPtr mpModuleInfoDesc;
50 MemPos moduleDataEnd = 0;
51 MemPos currStartPos = 0;
52 U8BIT moduleInfoLength;
54 dsmAssert(( mpDiiMsg != NULL ));
55 dsmAssert(( dataLength > 0 ));
56 dsmAssert(( mpModuleInfoDescStart != NULL ));
62 MEMPTR_OPEN( mpDiiMsg, mpModuleInfoDesc );
67 SET_POS_REL( mpModuleInfoDesc, 6 );
71 SET_POS_REL( mpModuleInfoDesc, 12 );
74 READ_UINT16( mpModuleInfoDesc, numModules );
77 GET_POS( mpModuleInfoDesc, moduleDataEnd );
78 moduleDataEnd += dataLength;
81 while (numModules--) {
86 GET_POS( mpModuleInfoDesc, currStartPos );
89 if (currStartPos >= moduleDataEnd) {
94 READ_UINT16( mpModuleInfoDesc, currModuleId );
96 if (currModuleId == moduleId) {
102 SET_POS_REL( mpModuleInfoDesc, 5 );
105 READ_UINT8( mpModuleInfoDesc, moduleInfoLength );
108 SET_POS_REL( mpModuleInfoDesc, (S32BIT)moduleInfoLength );
112 SET_POS_ABS( *mpModuleInfoDescStart, currStartPos );
115 MEMPTR_CLOSE( mpModuleInfoDesc );