@DATABASE Misc V1.30
$VER: Misc V1.30 (26.07.1998) by Laboureur -> AlphaSOUND <- Frédéric
@NODE MAIN "Misc V1.30"

    @{b}Misc V1.30 General Information:@{ub}

  * Blitz Basic II library number         : #40
  * Library size when linked to executable: 304 bytes
  * Number of commands                    : 3
  * Ressources automatically freed at end : Yes


    @{b}Commands summary:@{ub}

  @{" Boolean Values  " LINK Booleans} Functions
  @{" NMouseWait      " LINK NMouseWait} Statement
  @{" NVWait          " LINK NVWait} Statement

@ENDNODE


@NODE Booleans

    @{b}NAME@{ub}
  NTrue, NFalse, NOn, NOff

    @{b}SYNTAX@{ub}
  a = NTrue
  b = NOff...

    @{b}FUNCTION@{ub}
  There are used to do the code more readable.

  In Blitz 2:

  * True/On   = -1
  * False/Off =  0

  If you can, DON'T use them ! Just replace them by -1 or 0.  It's  much
  more faster and your code will be smaller.

@ENDNODE


@NODE NMouseWait

    @{b}NAME@{ub}
  NMouseWait

    @{b}SYNTAX@{ub}
  NMouseWait

    @{b}FUNCTION@{ub}
  This function wait for a  mouse  button  click.  It's  totally  system
  friendly so you can use it safely in any program.

@ENDNODE


@NODE NVWait

    @{b}NAME@{ub}
  NVWait

    @{b}SYNTAX@{ub}
  NVWait

    @{b}FUNCTION@{ub}
  Wait until the next frame begin. It's also know as Vertical Wait. Used
  to synchronize animation with the display.

@ENDNODE



