Combination View Flat View Tree View
Threads [ Previous | Next ]
After using lineGetDevCaps i get lpLineDevCaps.
I would like to obtain partition information stored in
 
 if(m_dwExtVersion == 0x00070000 &&  lpLineDevCaps->dwDevSpecificSize > 0)  
  {


   Cisco_LineDevCaps_Ext00070000  *ext7 = (Cisco_LineDevCaps_Ext00070000*)(((LPSTR)lpLineDevCaps) + lpLineDevCaps->dwDevSpecificOffset);
    ;

     LPSTR lpPtr = ((LPSTR)ext7) + ext7->dwPartitionOffset;
     int len = ext7->dwPartitionSize;
     CString tmp( lpPtr, len );

}
 
I got always empty string in tmp.
please help ASAP or provide working sample how to extarct partition.
Thanks

RE: get partition
Answer
10/7/10 1:21 PM as a reply to Ariel Schwartz.
Did you ever get this working?