Accessing Parameters Example Incorrect in LCK Manual

ID: Q106688

2.50 | 2.50 MS-DOS | WINDOWS kbinterop kbtool kbprg kbdocerr

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_length

It 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 KBCategory: kbinterop kbtool kbprg kbdocerr KBSubcategory: FxtoolLck
Keywords          : FxtoolLck 
Version           : 2.50   | 2.50
Platform          : MS-DOS WINDOWS

Last Reviewed: April 30, 1996