]> git.ipfire.org Git - people/ms/putty.git/blob - puttyps.h
Add search to connection list box.
[people/ms/putty.git] / puttyps.h
1 /*
2 * Find the platform-specific header for this platform.
3 */
4
5 #ifndef PUTTY_PUTTYPS_H
6 #define PUTTY_PUTTYPS_H
7
8 #ifdef _WINDOWS
9
10 #include "winstuff.h"
11
12 #elif defined(MACOSX)
13
14 #include "osx.h"
15
16 #else
17
18 #include "unix.h"
19
20 #endif
21
22 #endif