Accessing Parameters Example Incorrect in LCK ManualLast reviewed: April 29, 1996Article ID: Q106688 |
The information in this article applies to:
In the FoxPro Library Construction Kit "Developer's Guide," the example in the "How to Access Parameters in Your API Functions" section on page 12 is incorrect. The example incorrectly reads:
if (parm=>p[0].val.ev_type='C' x = parm->p[0].val.ev_lengthIt should be modified to read:
if (parm->p[0].val.ev_type=='C') { x = parm=>p[0].val.ev_length; } |
Additional reference words: FoxDos FoxWin 2.50 2.50a 2.50b LCK docerr
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |