Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

75 строки
2.1 KiB

  1. /*
  2. * libcucul Canvas for ultrafast compositing of Unicode letters
  3. * Copyright (c) 2002-2006 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the Do What The Fuck You Want To
  10. * Public License, Version 2, as published by Sam Hocevar. See
  11. * http://sam.zoy.org/wtfpl/COPYING for more details.
  12. */
  13. #ifndef __CUCUL_INTERNALS_H__
  14. #define __CUCUL_INTERNALS_H__
  15. #if defined(HAVE_INTTYPES_H) && !defined(__KERNEL__)
  16. # include <inttypes.h>
  17. #elif !defined(CUSTOM_INTTYPES) && !defined(_DOXYGEN_SKIP_ME)
  18. # define CUSTOM_INTTYPES
  19. typedef unsigned char uint8_t;
  20. typedef unsigned short uint16_t;
  21. typedef unsigned long int uint32_t;
  22. typedef long int intptr_t;
  23. typedef long unsigned int uintptr_t;
  24. #endif
  25. struct cucul_canvas
  26. {
  27. /* Context size */
  28. unsigned int width, height;
  29. uint32_t *chars;
  30. uint32_t *attr;
  31. char *empty_line, *scratch_line;
  32. uint16_t fgcolor;
  33. uint16_t bgcolor;
  34. unsigned int refcount;
  35. };
  36. struct cucul_buffer
  37. {
  38. unsigned long int size;
  39. char *data;
  40. };
  41. /* Bitmap functions */
  42. extern int _cucul_init_dither(void);
  43. extern int _cucul_end_dither(void);
  44. /* Canvas functions */
  45. extern void _cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int);
  46. extern void _cucul_putchar32(cucul_canvas_t *, int, int, uint32_t);
  47. /* Charset functions */
  48. extern unsigned int _cucul_strlen_utf8(char const *);
  49. extern char const *_cucul_skip_utf8(char const *, unsigned int);
  50. extern uint32_t _cucul_utf8_to_utf32(char const *);
  51. extern uint8_t _cucul_utf32_to_cp437(uint32_t);
  52. extern uint32_t _cucul_cp437_to_utf32(uint8_t);
  53. /* Colour functions */
  54. uint8_t _cucul_argb32_to_ansi8(uint32_t);
  55. uint8_t _cucul_argb32_to_ansi4fg(uint32_t);
  56. uint8_t _cucul_argb32_to_ansi4bg(uint32_t);
  57. uint16_t _cucul_argb32_to_rgb12fg(uint32_t);
  58. uint16_t _cucul_argb32_to_rgb12bg(uint32_t);
  59. uint32_t _cucul_argb32_to_rgb24fg(uint32_t);
  60. uint32_t _cucul_argb32_to_rgb24bg(uint32_t);
  61. void _cucul_argb32_to_argb4(uint32_t, uint8_t[8]);
  62. #endif /* __CUCUL_INTERNALS_H__ */