Next phase of general SFTP reworking: psftp.c is now a platform-
[sgt/putty] / unix / unix.h
CommitLineData
f7f27309 1#ifndef PUTTY_UNIX_H
2#define PUTTY_UNIX_H
3
9a30e26b 4#include <stdio.h> /* for FILENAME_MAX */
2dc6356a 5#include "charset.h"
6
9a30e26b 7struct Filename {
8 char path[FILENAME_MAX];
9};
10#define f_open(filename, mode) ( fopen((filename).path, (mode)) )
11
12struct FontSpec {
13 char name[256];
14};
15
f7f27309 16typedef void *Context; /* FIXME: probably needs changing */
17
f7f9fb5c 18typedef int OSSocket;
19#define OSSOCKET_DEFINED /* stop network.h using its default */
20
1709795f 21extern Backend pty_backend;
22
e6346999 23/*
24 * Under GTK, we send MA_CLICK _and_ MA_2CLK, or MA_CLICK _and_
25 * MA_3CLK, when a button is pressed for the second or third time.
26 */
27#define MULTICLICK_ONLY_EVENT 0
28
29/*
d9b15094 30 * Under GTK, there is no context help available.
31 */
32#define HELPCTX(x) P(NULL)
33#define FILTER_KEY_FILES NULL /* FIXME */
34
35/*
e6346999 36 * Under X, selection data must not be NUL-terminated.
37 */
38#define SELECTION_NUL_TERMINATED 0
39
0f351587 40/*
41 * Under X, copying to the clipboard terminates lines with just LF.
42 */
43#define SEL_NL { 10 }
44
f7f27309 45/* Simple wraparound timer function */
46unsigned long getticks(void); /* based on gettimeofday(2) */
47#define GETTICKCOUNT getticks
48#define TICKSPERSEC 1000000 /* gettimeofday returns microseconds */
215a9fd9 49#define CURSORBLINK 450000 /* no standard way to set this */
f7f27309 50
51#define WCHAR wchar_t
52#define BYTE unsigned char
53
a0e5ed33 54GLOBAL void *logctx;
55
e9aef757 56/* Things pty.c needs from pterm.c */
a8327734 57char *get_x_display(void *frontend);
58int font_dimension(void *frontend, int which);/* 0 for width, 1 for height */
7af753e6 59long get_windowid(void *frontend);
755a6d84 60
5bf9955d 61/* Things gtkdlg.c needs from pterm.c */
62void *get_window(void *frontend); /* void * to avoid depending on gtk.h */
63
3f935d5b 64/* Things pterm.c needs from gtkdlg.c */
56b9b9a7 65int do_config_box(const char *title, Config *cfg, int midsession);
3f935d5b 66void fatal_message_box(void *window, char *msg);
7718480a 67void about_box(void *window);
8eed910d 68void *eventlogstuff_new(void);
69void showeventlog(void *estuff, void *parentwin);
cbe2d68f 70void logevent_dlg(void *estuff, const char *string);
abb6895f 71int reallyclose(void *frontend);
3f935d5b 72
10705014 73/* Things pterm.c needs from {ptermm,uxputty}.c */
74char *make_default_wintitle(char *hostname);
46a3419b 75int process_nonoption_arg(char *arg, Config *cfg);
10705014 76
f5dd8adb 77/* pterm.c needs this special function in xkeysym.c */
78int keysym_to_unicode(int keysym);
79
faec60ed 80/* Things uxstore.c needs from pterm.c */
c85623f9 81char *x_get_default(const char *key);
faec60ed 82
0ac15bdc 83/* Things uxstore.c provides to pterm.c */
84void provide_xrm_string(char *string);
85
0ff9ea38 86/* The interface used by uxsel.c */
87void uxsel_init(void);
88typedef int (*uxsel_callback_fn)(int fd, int event);
89void uxsel_set(int fd, int rwx, uxsel_callback_fn callback);
90void uxsel_del(int fd);
c5e438ec 91int select_result(int fd, int event);
0ff9ea38 92int first_fd(int *state, int *rwx);
93int next_fd(int *state, int *rwx);
74aca06d 94/* The following are expected to be provided _to_ uxsel.c by the frontend */
95int uxsel_input_add(int fd, int rwx); /* returns an id */
96void uxsel_input_remove(int id);
c5e438ec 97
1d0d4a3b 98/* uxcfg.c */
99struct controlbox;
7718480a 100void unix_setup_config_box(struct controlbox *b, int midsession, void *window);
1d0d4a3b 101
2dc6356a 102/*
103 * In the Unix Unicode layer, DEFAULT_CODEPAGE is a special value
104 * which causes mb_to_wc and wc_to_mb to call _libc_ rather than
105 * libcharset. That way, we can interface the various charsets
106 * supported by libcharset with the one supported by mbstowcs and
107 * wcstombs (which will be the character set in which stuff read
108 * from the command line or config files is assumed to be encoded).
109 */
110#define DEFAULT_CODEPAGE 0xFFFF
111#define CP_UTF8 CS_UTF8 /* from libcharset */
f7f27309 112
68a49acb 113#define strnicmp strncasecmp
114#define stricmp strcasecmp
115
0f33f9d1 116/* BSD-semantics version of signal() */
117void (*putty_signal(int sig, void (*func)(int)))(int);
118
facd762c 119/*
120 * Exports from unicode.c.
121 */
21d2b241 122struct unicode_data;
123int init_ucs(struct unicode_data *ucsdata,
3900c2d6 124 char *line_codepage, int font_charset, int vtmode);
facd762c 125
2f92b717 126/*
127 * Spare function exported directly from uxnet.c.
128 */
129int sk_getxdmdata(void *sock, unsigned long *ip, int *port);
130
f7f27309 131#endif