Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - setfixed() set the fixed flag http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 setfixed()          Set the fixed flag
------------------------------------------------------------------------------
 Declaration
   getset.hdr

 Syntax
   proc setfixed extern
   param value logical lOn

 Arguments
   lOn is the new setting for the flag.

 Return
   None.

 Description
   The setfixed() function sets the fixed flag according to the
   passed parameter.

 Example
   #define EXAMPLE_MATH
   #include example.hdr

   proc Test_setfixed
   ? getfixed()          // prints .f.
   setfixed( .t. )
   ? getfixed()          // prints .t.
   set fixed off
   ? getfixed()          // prints .f.
   endproc

   proc main
   Test_setfixed()
   endproc

See Also: getsetfixed()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson