;
; ScreenGrabber (back-end module error blocks)
; Copyright (C) 2000  Chris Bazley
;
; This program is free software; you can redistribute it and/or modify
; it under the terms of the GNU General Public Licence as published by
; the Free Software Foundation; either version 2 of the Licence, or
; (at your option) any later version.
;
; This program is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; GNU General Public Licence for more details.
;
; You should have received a copy of the GNU General Public Licence
; along with this program; if not, write to the Free Software
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
;

; Error blocks are assembled separately by ASM because the _kernel_oserror C structure wastes tons of memory

AREA C$$data, DATA
; (SFX_Handler uses errors up to &81A710)

EXPORT error_bad_interval
error_bad_interval:
  DCD &81A721
  DCSZ "The interval between frames must be at least 2 centiseconds"
  ALIGN

EXPORT error_uk_key_name
error_uk_key_name:
  DCD &81A722
  DCSZ "Unknown key name"
  ALIGN

EXPORT error_hotkey_syntax
error_hotkey_syntax:
  DCD &dc ; same as system error
  DCSZ "Syntax: *SGrabHotKey [On|Off|<key name>|!<key code>]"
  ALIGN

EXPORT error_palette_syntax
error_palette_syntax:
  DCD &dc ; same as system error
  DCSZ "Syntax: *SGrabPalette [On|Off]"
  ALIGN

EXPORT error_film_syntax
error_film_syntax:
  DCD &dc ; same as system error
  DCSZ "Syntax: *SGrabFilm [On|Off]"
  ALIGN

EXPORT error_filmdelay_syntax
error_filmdelay_syntax:
  DCD &dc ; same as system error
  DCSZ "Syntax: *SGrabFilmDelay [<centiseconds>|Auto|Half]"
  ALIGN

EXPORT error_configure_syntax
error_configure_syntax:
  DCD &dc ; same as system error
  DCSZ "Syntax: *SGrabConfigure [-On|-Off] [-Single|-Film] [-KeyName <key name>|-KeyCode <key code>] [-Interval <centiseconds>|-AutoSync|-HalfSync] [-[No]Palette] [-NewSprite|-OldSprite] [-Filename <filename>]"
  ALIGN
