This document was generated from CDN thread
Created by: Vladimir Banker on 03-06-2010 02:57:17 PM
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
Subject: RE: get partition
Replied by: Jeremy Edwards on 07-10-2010 08:21:05 AM
Did you ever get this working?