home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 12.17. Using the preprocessor to make GetString() easier to use.
- Author: Craig Yellick
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- #translate GETSTRING( [ AT <r> [, <c> ]] ;
- [ MESSAGE <msg> ] ;
- [ COLOR <clr> ] ;
- [ DEFAULT <def> ] ;
- [ PICTURE <pict> ] ;
- ) ;
- => GetString(<r>, <c>, <msg>, <clr>, <def>, <pict>)
-
- // end of file CHP1217.CH
-