table of contents
other versions
- buster 5.6-10+deb10u1
- buster-backports 6.0+dfsg-6~bpo10+1
- testing 6.0+dfsg-6
- unstable 6.0+dfsg-6
brlapi_info(3) | BrlAPI | brlapi_info(3) |
NAME¶
brlapi_info - How to get information about the connected Terminal.SYNOPSIS¶
Macros¶
#define BRLAPI_MAXNAMELENGTH 31
Functions¶
int BRLAPI_STDCALL brlapi_getDriverName (char *buffer, size_t size)
int BRLAPI_STDCALL brlapi__getDriverName (brlapi_handle_t *handle, char *buffer, size_t size)
int BRLAPI_STDCALL brlapi_getModelIdentifier (char *buffer, size_t size)
int BRLAPI_STDCALL brlapi__getModelIdentifier (brlapi_handle_t *handle, char *buffer, size_t size)
int BRLAPI_STDCALL brlapi_getDisplaySize (unsigned int *x, unsigned int *y)
int BRLAPI_STDCALL brlapi__getDisplaySize (brlapi_handle_t *handle, unsigned int *x, unsigned int *y)
Detailed Description¶
Before using Raw mode or key codes, the application should always check the type of the connected terminal, to be sure it is really the one it expects.One should also check for display size, so as to adjust further displaying on it.
Macro Definition Documentation¶
#define BRLAPI_MAXNAMELENGTH 31¶
Maximum name length for names embeded in BrlAPI packets, not counting any termination \0 characterFunction Documentation¶
int BRLAPI_STDCALL brlapi__getDisplaySize (brlapi_handle_t * handle, unsigned int * x, unsigned int * y)¶
int BRLAPI_STDCALL brlapi__getDriverName (brlapi_handle_t * handle, char * buffer, size_t size)¶
int BRLAPI_STDCALL brlapi__getModelIdentifier (brlapi_handle_t * handle, char * buffer, size_t size)¶
int BRLAPI_STDCALL brlapi_getDisplaySize (unsigned int * x, unsigned int * y)¶
Return the size of the braille displayint BRLAPI_STDCALL brlapi_getDriverName (char * buffer, size_t size)¶
Return the complete name of the driver used by brlttyThis function fills its argument with the whole name of the braille driver if available, terminated with a '\0'.
Parameters:
buffer is the buffer provided by the application;
size is the maximum size for the name buffer.
size is the maximum size for the name buffer.
Returns:
-1 on error, or a positive value giving the size of the
needed buffer, if the supplied one is too small (same as snprintf()).
int BRLAPI_STDCALL brlapi_getModelIdentifier (char * buffer, size_t size)¶
Return an identifier for the device model used by brlttyThis function fills its argument with the whole identifier of the braille device model if available, terminated with a '\0'.
Parameters:
buffer is the buffer given by the application;
size is the maximum size for the identifier buffer.
size is the maximum size for the identifier buffer.
Returns:
-1 on error, or a positive value giving the size of the
needed buffer, if the supplied one is too small (same as snprintf()).
Author¶
Generated automatically by Doxygen for BrlAPI from the source code.Tue Jun 16 2020 | Version 0.7 |