mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
64c52b0d30
beginning of a Unix port. It's nowhere near done, and currently it won't even compile on Unix. But this represents the start of the process of separating out platform-specific code, and also contains the mkfiles.pl changes required to support a Unix makefile and a non-flat source tree. [originally from svn r1993]
16 lines
151 B
C
16 lines
151 B
C
#ifndef PUTTY_PUTTYPS_H
|
|
#define PUTTY_PUTTYPS_H
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#include <windows.h>
|
|
#include "winstuff.h"
|
|
|
|
#else
|
|
|
|
#include "unix.h"
|
|
|
|
#endif
|
|
|
|
#endif
|