Linux Manuals

The Linux Manuals (man pages) document is an important part of Linux documents. Linux Manuals are organized as several sections. Each section has a group of commands for a specific area in Linux usage, administration or development.

  • |

    aa_mouserecommended (3) Linux Manual Page

    aa_mouserecommended – List of recommended drivers. Synopsis #include <aalib.h> extern aa_linkedlist *aa_mouserecommended; DescriptionList of recommended drivers is used by aa_autoinit familly of functions and altered by aa_recommend familly of functions. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3),…

  • |

    aa_mousedrivers (3) Linux Manual Page

    aa_mousedrivers – NULL terminated array of mouse drivers supported by AA-lib. Synopsis #include <aalib.h> extern const struct aa_mousedriver *const aa_mousedrivers[]; DescriptionNULL terminated array of mouse drivers supported by AA-lib. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3), aa_autoinitkbd(3),…

  • |

    aa_mmwidth (3) Linux Manual Page

    aa_mmwidth – returns width of the output screen in millimeters. Synopsis #include <aalib.h> int aa_mmwidth(aa_context *a); Parametersaa_context *a Specifies the AA-lib context to operate on.DescriptionReturns width of the output screen in millimeters. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3),…

  • |

    aa_mmheight (3) Linux Manual Page

    aa_mmheight – returns height of the output screen in millimeters. Synopsis #include <aalib.h> int aa_mmheight(aa_context *a); Parametersaa_context *a Specifies the AA-lib context to operate on.DescriptionReturns height of the output screen in millimeters. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3),…

  • |

    aa_kbdrecommended (3) Linux Manual Page

    aa_kbdrecommended – List of recommended drivers. Synopsis #include <aalib.h> extern aa_linkedlist *aa_kbdrecommended; DescriptionList of recommended drivers is used by aa_autoinit familly of functions and altered by aa_recommend familly of functions. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3),…

  • |

    aa_kbddrivers (3) Linux Manual Page

    aa_kbddrivers – NULL-terminated array of keyboard drivers available in AA_lib. Synopsis #include <aalib.h> extern const struct aa_kbddriver *const aa_kbddrivers[]; DescriptionNULL-terminated array of keyboard drivers available in AA_lib. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3), aa_autoinitkbd(3), aa_autoinitmouse(3), aa_recommendhi(3),…

  • |

    aa_initmouse (3) Linux Manual Page

    aa_initmouse – initialize the AA-lib mouse driver. Synopsis #include <aalib.h> int aa_initmouse (        struct aa_context *c,        const struct aa_mousedriver *d,        int mode ); Parametersstruct aa_context *c Specifies the AA-lib context to operate on. const struct aa_mousedriver *d Driver you wish to use. int mode Mask of extra features you request. No such features are available…

  • |

    aa_initkbd (3) Linux Manual Page

    aa_initkbd – initialize the AA-lib keyboard driver. Synopsis #include <aalib.h> int aa_initkbd (        struct aa_context *context,        const struct aa_kbddriver *drv,        int mode ); Parametersstruct aa_context *context Specifies the AA-lib context to operate on. const struct aa_kbddriver *drv Driver you wish to use. int mode Mask of extra features you request. Can contain AA_SENDRELEASE if you…

  • |

    aa_init (3) Linux Manual Page

    aa_init – open the output display for AA-lib. Synopsis #include <aalib.h> aa_context *aa_init (        const struct aa_driver *driver,        const struct aa_hardware_params *defparams,        const void *driverdata ); Parametersconst struct aa_driver *driver Driver you want to use. Available drivers are listed in the NULL terminated aa_drivers array. const struct aa_hardware_params *defparams Hardware parameters you want. Use aa_defparams…

  • |

    aa_imgwidth (3) Linux Manual Page

    aa_imgwidth – returns width of the emulated image in pixels. Synopsis #include <aalib.h> int aa_imgwidth(aa_context *a); Parametersaa_context *a Specifies the AA-lib context to operate on.DescriptionReturns width of the emulated image in pixels. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3),…

  • |

    aa_imgheight (3) Linux Manual Page

    aa_imgheight – returns height of the emulated image in pixels. Synopsis #include <aalib.h> int aa_imgheight(aa_context *a); Parametersaa_context *a Specifies the AA-lib context to operate on.DescriptionReturns height of the emulated image in pixels. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_image(3), aa_text(3), aa_attrs(3),…

  • |

    aa_image (3) Linux Manual Page

    aa_image – returns pointer to the framebuffer emulated by AA-lib. Synopsis #include <aalib.h> char *aa_image(aa_context *a); Parametersaa_context *a Specifies the AA-lib context to operate on.DescriptionThe framebuffer is simple array of characters specifying the brightness value (or palette index depending on the aa_render call). The array is organizated in the aa_imgheight (a) rows of aa_imgwidth(a) characters….

  • |

    aa_hidemouse (3) Linux Manual Page

    aa_hidemouse – hide the mouse cursor. Synopsis #include <aalib.h> void aa_hidemouse(aa_context *c); Parametersaa_context *c Not Documented.DescriptionHide the mouse cursor. This function may be ignored by some drivers. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3), aa_autoinitkbd(3), aa_autoinitmouse(3),…

  • |

    aa_hidecursor (3) Linux Manual Page

    aa_hidecursor – hide the hardware cursor. Synopsis #include <aalib.h> void aa_hidecursor(aa_context *c); Parametersaa_context *c Specifies the AA-lib context to operate on.DescriptionHide the hardware cursor. This function may be ignored by some drivers. See Alsosave_d(3), mem_d(3), aa_help(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3),…

  • |

    aa_help (3) Linux Manual Page

    aa_help – AA-lib help string for the default command line parser. Synopsis #include <aalib.h> extern const char *const aa_help; DescriptionAA-lib help string for the default command line parser. See Alsosave_d(3), mem_d(3), aa_formats(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3), aa_autoinitkbd(3), aa_autoinitmouse(3),…

  • |

    aa_gotoxy (3) Linux Manual Page

    aa_gotoxy – move the hardware cursor (if any) to specified position. Synopsis #include <aalib.h> void aa_gotoxy (        aa_context *c,        int x,        int y ); Parametersaa_context *c Specifies the AA-lib context to operate on. int x X coordinate of new position. int y Y coordinate of the position.DescriptionMove the hardware cursor (if any) to specified position….

  • |

    aa_getmouse (3) Linux Manual Page

    aa_getmouse – Get mouse position as specified by last mouse event read by aa_getevent. Synopsis #include <aalib.h> void aa_getmouse (        aa_context *c,        int *x,        int *y,        int *b ); Parametersaa_context *c Specifies the AA-lib context to operate on. int *x Used to return X coordinate of mouse in characters. int *y Used to return Y…

  • |

    aa_getkey (3) Linux Manual Page

    aa_getkey – return next keypress event from queue. Synopsis #include <aalib.h> int aa_getkey (        aa_context *c,        int wait ); Parametersaa_context *c Specifies the AA-lib context to operate on. int wait 1 if you wish to wait for the even when queue is empty.DescriptionReturn next keypress event from queue. ReturnsNext keypress event from queue (values lower…

  • |

    aa_getevent (3) Linux Manual Page

    aa_getevent – keyboard functions Synopsis #include <aalib.h> int aa_getevent (        aa_context *c,        int wait ); Parametersaa_context *c Specifies the AA-lib context to operate on. int wait 1 if you wish to wait for the even when queue is empty.DescriptionReturn next event from queue. Return next even from queue. Optionally wait for even when queue is…

  • |

    aa_formats (3) Linux Manual Page

    aa_formats – NULL terminated array of save formats supported by AA-lib. Synopsis #include <aalib.h> extern const struct aa_format *const aa_formats[]; DescriptionNULL terminated array of save formats supported by AA-lib. See Alsosave_d(3), mem_d(3), aa_help(3), aa_fonts(3), aa_dithernames(3), aa_drivers(3), aa_kbddrivers(3), aa_mousedrivers(3), aa_kbdrecommended(3), aa_mouserecommended(3), aa_displayrecommended(3), aa_defparams(3), aa_defrenderparams(3), aa_scrwidth(3), aa_scrheight(3), aa_mmwidth(3), aa_mmheight(3), aa_imgwidth(3), aa_imgheight(3), aa_image(3), aa_text(3), aa_attrs(3), aa_currentfont(3), aa_autoinit(3), aa_autoinitkbd(3),…