1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Sprinkle some header comments in various files in an attempt to explain what

they're for.

[originally from svn r6639]
This commit is contained in:
Jacob Nevins
2006-04-23 18:26:03 +00:00
parent a58cd426b8
commit 7958a63147
18 changed files with 71 additions and 1 deletions

View File

@ -1,3 +1,7 @@
/*
* sizetip.c - resize tips for PuTTY(tel) terminal window.
*/
#include <stdio.h>
#include <stdlib.h>
#include <tchar.h>

View File

@ -1,3 +1,7 @@
/*
* win_res.h - constants shared between win_res.rc2 and the C code.
*/
#ifndef PUTTY_WIN_RES_H
#define PUTTY_WIN_RES_H

View File

@ -1,5 +1,5 @@
/*
* console.c: various interactive-prompt routines shared between
* wincons.c - various interactive-prompt routines shared between
* the Windows console PuTTY tools
*/

View File

@ -1,3 +1,7 @@
/*
* windlg.c - dialogs for PuTTY(tel), including the configuration dialog.
*/
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>

View File

@ -1,3 +1,8 @@
/*
* window.c - the PuTTY(tel) main program, which runs a PuTTY terminal
* emulator and backend in a window.
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

View File

@ -1,3 +1,7 @@
/*
* wintime.c - Avoid trouble with time() returning (time_t)-1 on Windows.
*/
#include "putty.h"
#include <time.h>