115 lines
4.6 KiB
C
115 lines
4.6 KiB
C
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: strings.h
|
|
//
|
|
// Contents:
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 12-06-95 michth Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define IDS_BASE 4000
|
|
|
|
#define IDS_HEADER1 (IDS_BASE+1)
|
|
#define IDS_HEADER2 (IDS_BASE+2)
|
|
#define IDS_HEADER3 (IDS_BASE+3)
|
|
#define IDS_HEADER4 (IDS_BASE+4)
|
|
|
|
#define IDS_USAGE1 (IDS_BASE+11)
|
|
#define IDS_USAGE2 (IDS_BASE+12)
|
|
#define IDS_USAGE3 (IDS_BASE+13)
|
|
#define IDS_USAGE4 (IDS_BASE+14)
|
|
#define IDS_USAGE5 (IDS_BASE+15)
|
|
#define IDS_USAGE7 (IDS_BASE+17)
|
|
#define IDS_USAGE8 (IDS_BASE+18)
|
|
#define IDS_USAGE9 (IDS_BASE+19)
|
|
#define IDS_USAGE10 (IDS_BASE+20)
|
|
#define IDS_USAGE11 (IDS_BASE+21)
|
|
#define IDS_USAGE12 (IDS_BASE+22)
|
|
#define IDS_USAGE13 (IDS_BASE+23)
|
|
#define IDS_USAGE14 (IDS_BASE+24)
|
|
#define IDS_USAGE15 (IDS_BASE+25)
|
|
#define IDS_USAGE16 (IDS_BASE+26)
|
|
|
|
#define IDS_SAMPLE0 (IDS_BASE+30)
|
|
#define IDS_SAMPLE1 (IDS_BASE+31)
|
|
#define IDS_SAMPLE2 (IDS_BASE+32)
|
|
#define IDS_SAMPLE3 (IDS_BASE+33)
|
|
#define IDS_SAMPLE4 (IDS_BASE+34)
|
|
#define IDS_SAMPLE5 (IDS_BASE+35)
|
|
#define IDS_SAMPLE6 (IDS_BASE+36)
|
|
|
|
#define IDS_TIME_ZONE1 (IDS_BASE+50)
|
|
#define IDS_TIME_ZONE2 (IDS_BASE+51)
|
|
#define IDS_LINES (IDS_BASE+52)
|
|
#define IDS_DUMP_LINES (IDS_BASE+53)
|
|
#define IDS_WEB_LINES (IDS_BASE+54)
|
|
|
|
#define IDS_TOTALS (IDS_BASE+55)
|
|
#define IDS_TOT_LINES (IDS_BASE+56)
|
|
#define IDS_TOT_FTP_LINES (IDS_BASE+57)
|
|
#define IDS_TOT_WEB_LINES (IDS_BASE+58)
|
|
|
|
#define IDS_CACHE_ERR (IDS_BASE+60)
|
|
#define IDS_CACHE_HITS (IDS_BASE+61)
|
|
#define IDS_CACHE_MISS (IDS_BASE+62)
|
|
#define IDS_CACHE_TOT (IDS_BASE+63)
|
|
#define IDS_LINES_PROC (IDS_BASE+64)
|
|
#define IDS_PREPROC (IDS_BASE+65)
|
|
|
|
#define IDS_LASTDATE (IDS_BASE+70)
|
|
#define IDS_LASTTIME (IDS_BASE+71)
|
|
#define IDS_NO_CONVERSION_NEEDED (IDS_BASE+72)
|
|
|
|
#define IDS_ERROR 4100
|
|
#define IDS_BAD_DIR (IDS_ERROR)
|
|
#define IDS_FILE_ERR (IDS_ERROR+1)
|
|
#define IDS_FILE_CLOSE (IDS_ERROR+2)
|
|
#define IDS_FILE_OPEN (IDS_ERROR+3)
|
|
#define IDS_FILE_WRITE (IDS_ERROR+4)
|
|
#define IDS_FILE_EXIST (IDS_ERROR+5)
|
|
#define IDS_FILE_NONE (IDS_ERROR+6)
|
|
#define IDS_FILE_NOT_MSINET (IDS_ERROR+7)
|
|
#define IDS_FILE_NOT_NCSA (IDS_ERROR+8)
|
|
#define IDS_BAD_NONE_ERR (IDS_ERROR+9)
|
|
#define IDS_BAD_DATESTRINGS (IDS_ERROR+10)
|
|
#define IDS_BAD_EXTENDED_FORMAT (IDS_ERROR+11)
|
|
|
|
#define IDS_STRING_ERR (IDS_ERROR+20)
|
|
#define IDS_WINSOCK_ERR (IDS_ERROR+21)
|
|
|
|
#define IDS_MONTHS 4200
|
|
#define IDS_JAN (IDS_MONTHS)
|
|
#define IDS_FEB (IDS_MONTHS+1)
|
|
#define IDS_MAR (IDS_MONTHS+2)
|
|
#define IDS_APR (IDS_MONTHS+3)
|
|
#define IDS_MAY (IDS_MONTHS+4)
|
|
#define IDS_JUN (IDS_MONTHS+5)
|
|
#define IDS_JUL (IDS_MONTHS+6)
|
|
#define IDS_AUG (IDS_MONTHS+7)
|
|
#define IDS_SEP (IDS_MONTHS+8)
|
|
#define IDS_OCT (IDS_MONTHS+9)
|
|
#define IDS_NOV (IDS_MONTHS+10)
|
|
#define IDS_DEC (IDS_MONTHS+11)
|
|
#define IDS_MON (IDS_MONTHS+12)
|
|
#define IDS_TUE (IDS_MONTHS+13)
|
|
#define IDS_WED (IDS_MONTHS+14)
|
|
#define IDS_THU (IDS_MONTHS+15)
|
|
#define IDS_FRI (IDS_MONTHS+16)
|
|
#define IDS_SAT (IDS_MONTHS+17)
|
|
#define IDS_SUN (IDS_MONTHS+18)
|
|
|