mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 17:23:09 +03:00
999410adc8
- Optimized browser window caret, uses back-buffer now. ( So no content redraw is scheduled by the frontend just for a caret move ) - Fixed a double redraw issue when the browser reformat is pending and the AES also sends an redraw request because of the resize. - Started to use netsurfs textarea instead of a custom implementation ( to reduce code size ). svn path=/trunk/netsurf/; revision=13191
20 lines
385 B
C
20 lines
385 B
C
#ifndef NS_ATARI_ENCODING_H
|
|
#define NS_ATARI_ENCODING_H
|
|
|
|
#include <inttypes.h>
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <windom.h>
|
|
|
|
#include "css/css.h"
|
|
#include "render/font.h"
|
|
#include "utils/utf8.h"
|
|
|
|
utf8_convert_ret local_encoding_to_utf8(const char *string,
|
|
size_t len,
|
|
char **result);
|
|
|
|
int atari_to_ucs4( unsigned char atarichar);
|
|
|
|
#endif
|