Symbian3/PDK/Source/GUID-B97C3C1D-7F35-4B0A-9420-180CE70EF6DE.dita
changeset 12 80ef3a206772
parent 9 59758314f811
equal deleted inserted replaced
11:5072524fcc79 12:80ef3a206772
    15 <context id="GUID-770F2977-EA82-4680-A313-612331B0000B"><p><codeph>TEntry::FileSize()</codeph> returns a 64-bit file size. <codeph>TEntry::FileSize()</codeph> replaces
    15 <context id="GUID-770F2977-EA82-4680-A313-612331B0000B"><p><codeph>TEntry::FileSize()</codeph> returns a 64-bit file size. <codeph>TEntry::FileSize()</codeph> replaces
    16 the function <codeph>TEntry::iSize()</codeph> as <codeph>iSize()</codeph> cannot
    16 the function <codeph>TEntry::iSize()</codeph> as <codeph>iSize()</codeph> cannot
    17 represent a file size beyond 2GB-1 (if treated as a signed int) or beyond
    17 represent a file size beyond 2GB-1 (if treated as a signed int) or beyond
    18 4GB-1 (if treated as an unsigned int).</p>     <p>Replace calls to <codeph>TEntry::iSize()</codeph> with <codeph>TEntry::FileSize()</codeph> for
    18 4GB-1 (if treated as an unsigned int).</p>     <p>Replace calls to <codeph>TEntry::iSize()</codeph> with <codeph>TEntry::FileSize()</codeph> for
    19 large files. </p></context>
    19 large files. </p></context>
    20 <steps id="GUID-4DD07DEC-6017-4237-BE46-1D69E5FBD744-GENID-1-12-1-17-1-1-9-1-6-1-8-1-15-1-3-2">
    20 <steps id="GUID-4DD07DEC-6017-4237-BE46-1D69E5FBD744-GENID-1-12-1-18-1-1-9-1-6-1-8-1-15-1-3-2">
    21 <step id="GUID-9A69E5AD-E938-4092-A8C2-CB65C37C8962-GENID-1-12-1-17-1-1-9-1-6-1-8-1-15-1-3-2-1"><cmd>Use <codeph>TEntry::FileSize()</codeph> instead
    21 <step id="GUID-9A69E5AD-E938-4092-A8C2-CB65C37C8962-GENID-1-12-1-18-1-1-9-1-6-1-8-1-15-1-3-2-1"><cmd>Use <codeph>TEntry::FileSize()</codeph> instead
    22 of <codeph>TEntry::iSize()</codeph> for large files and replace the return
    22 of <codeph>TEntry::iSize()</codeph> for large files and replace the return
    23 variable of type <codeph>TInt</codeph> with a <codeph>TInt64</codeph>.</cmd>
    23 variable of type <codeph>TInt</codeph> with a <codeph>TInt64</codeph>.</cmd>
    24 <stepxmp><codeblock xml:space="preserve">TInt r;
    24 <stepxmp><codeblock xml:space="preserve">TInt r;
    25 TEntry myFileEntry;
    25 TEntry myFileEntry;
    26 RFs TheFs;
    26 RFs TheFs;