File: ui_selection_encoding.h

package info (click to toggle)
mlterm 3.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,340 kB
  • sloc: ansic: 154,713; sh: 5,302; cpp: 2,953; objc: 2,776; java: 2,472; makefile: 2,445; perl: 1,674; xml: 44
file content (21 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */

#ifndef __UI_SELECTION_ENCODING_H__
#define __UI_SELECTION_ENCODING_H__

#include <mef/ef_parser.h>
#include <mef/ef_conv.h>

#include "ui.h"

#ifdef USE_XLIB
void ui_set_big5_selection_buggy(int buggy);
#else
#define ui_set_big5_selection_buggy(buggy) (0)
#endif

ef_parser_t *ui_get_selection_parser(int utf);

ef_conv_t *ui_get_selection_conv(int utf);

#endif