Artifact 812f595c7c04acb34fd1a7963ca61e67d6c15088:
- File puttyps.h — part of check-in [7932188e51] at 2006-04-23 13:26:03 on branch trunk — Sprinkle some header comments in various files in an attempt to explain what they're for. (user: jacob size: 284)
/* * Find the platform-specific header for this platform. */ #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