home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / DMSERROR.ZIP / EXXTEND.DOC < prev    next >
Encoding:
Text File  |  1988-08-01  |  2.3 KB  |  63 lines

  1. The Exxtend.C is a collection of "C" functions to return the values of MOST
  2.  
  3. of the Clipper SET Commands.  In Most cases, the function returns a LOGICAL
  4.  
  5. Value, (TRUE or FALSE).  Below is a description of what these functions are:
  6.  
  7.  
  8. getprint()   TRUE = Print On
  9. getexact()   TRUE = Exact On
  10. getalterna() TRUE = Alternate On
  11. getdeleted() TRUE = Deleted On
  12. getsoftsee() TRUE = Softseek On
  13. getbell()    TRUE = Bell On
  14. getconfirm() TRUE = Confirm On
  15. getconsole() TRUE = Console On
  16. getscore()   TRUE = Scoreboard On
  17. getescape()  TRUE = Escape   On
  18. getcentury() TRUE = Century  On
  19. getwrap()    TRUE = Wrap  On   
  20. getdevice_() TRUE = Dev = Print   FALSE = Dev = Screen
  21. getfixed()   TRUE = Fixed on
  22. getunique()  TRUE = Unique on
  23. getexclu()   TRUE = Exclusive on
  24. getcurs()    TRUE = Cursor on
  25. getaltopen() TRUE = Alternate File Open
  26. getdelim()   TRUE = Delimiters On
  27. getintens()  TRUE = Intensity On
  28. getdecimal() Returns setting of SET DECIMALS (Numeric)
  29. getmargin()  Returns setting ot SET MARGIN (Numeric)
  30. getosvers()  Returns DOS Version (Numeric) in form: (major * 256) + minor
  31. getldelim()  Returns the value(Numeric) of the left delimiter
  32. getrdelim()  Returns the value(Numeric) of the right delimiter
  33. getdate()    Returns a code of the SET DATE setting: 1 = American
  34.                                                      2 = ANSI
  35.                                                      3 = British
  36.                                                      4 = French
  37.                                                      5 = German
  38.                                                      6 = Italian
  39. getpath()    Returns the character string of the CLIPPER 'SET PATH' setting
  40. getdefault() Returns the character string of the CLIPPER 'SET DEFAULT' setting
  41.   
  42. setdecimal(n) Returns the current value of SET DECIMAL & sets it to a new value
  43.               n must be NUMERIC
  44.  
  45.  
  46. Some other things are available also, such as the file handle of the 
  47.  
  48. Alternate File.  Currently, I do not have any functions to access these.
  49.  
  50. Others will be added as I figure them out.
  51.  
  52.  
  53. These functions have been tested somewhat, however, thorough testing has NOT
  54.  
  55. been done.
  56.  
  57. J. Scott Emerich
  58. Emerich & Associates
  59. 6200 Fairlynn Blvd.
  60. Yorba Linda, CA  92686
  61. (714) 970-9148
  62.  
  63.