/* * BRLTTY - A background process providing access to the console screen (when in * text mode) for a blind person using a refreshable braille display. * * Copyright (C) 1995-2021 by The BRLTTY Developers. * * BRLTTY comes with ABSOLUTELY NO WARRANTY. * * This is free software, placed under the terms of the * GNU Lesser General Public License, as published by the Free Software * Foundation; either version 2.1 of the License, or (at your option) any * later version. Please see the file LICENSE-LGPL for details. * * Web Page: http://brltty.app/ * * This software is maintained by Dave Mielke . */ #ifndef BRLTTY_INCLUDED_BRL_UTILS #define BRLTTY_INCLUDED_BRL_UTILS #include "brl_types.h" #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ extern void drainBrailleOutput (BrailleDisplay *brl, int minimumDelay); extern void announceBrailleOffline (void); extern void announceBrailleOnline (void); extern void setBrailleOffline (BrailleDisplay *brl); extern void setBrailleOnline (BrailleDisplay *brl); extern int cellsHaveChanged ( unsigned char *cells, const unsigned char *new, unsigned int count, unsigned int *from, unsigned int *to, unsigned char *force ); extern int textHasChanged ( wchar_t *text, const wchar_t *new, unsigned int count, unsigned int *from, unsigned int *to, unsigned char *force ); extern int cursorHasChanged (int *cursor, int new, unsigned char *force); extern unsigned char toLowerDigit (unsigned char upper); typedef const unsigned char DigitsTable[11]; typedef unsigned char MakeNumberFunction (int x); typedef unsigned char MakeFlagFunction (int number, int on); extern const DigitsTable landscapeDigits; extern MakeNumberFunction makeLandscapeNumber; extern MakeFlagFunction makeLandscapeFlag; extern const DigitsTable seascapeDigits; extern MakeNumberFunction makeSeascapeNumber; extern MakeFlagFunction makeSeascapeFlag; extern const DigitsTable portraitDigits; extern MakeNumberFunction makePortraitNumber; extern MakeFlagFunction makePortraitFlag; #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* BRLTTY_INCLUDED_BRL_UTILS */