mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
46bfde32e8
with the Unix port and layering a Cocoa GUI on top. The basics all work: there's a configuration panel and a terminal window, the timing interface works and the select interface functions. The same application can run both SSH (or other network) connections and local pty sessions, and multiple sessions in the same process are fully supported. However, it's horribly unfinished in a wide variety of other ways; anyone interested is invited to read README.OSX and wince at the length and content of its `unfinished' list. [originally from svn r5308]
23 lines
220 B
C
23 lines
220 B
C
#ifndef PUTTY_PUTTYPS_H
|
|
#define PUTTY_PUTTYPS_H
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#include "winstuff.h"
|
|
|
|
#elif defined(macintosh)
|
|
|
|
#include "macstuff.h"
|
|
|
|
#elif defined(MACOSX)
|
|
|
|
#include "osx.h"
|
|
|
|
#else
|
|
|
|
#include "unix.h"
|
|
|
|
#endif
|
|
|
|
#endif
|