mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
862 B
33 lines
862 B
//
|
|
// MODULE: MAXBUF.H
|
|
//
|
|
// PURPOSE: Declare buffer size macro
|
|
//
|
|
// PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
|
|
//
|
|
// COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
|
|
//
|
|
// AUTHOR: Joe Mabel
|
|
//
|
|
// ORIGINAL DATE: 01-06-98
|
|
//
|
|
// NOTES:
|
|
//
|
|
// Version Date By Comments
|
|
//--------------------------------------------------------------------
|
|
// V3.1 01-06-98 JM get MAXBUF into a header file of its own
|
|
//
|
|
|
|
#if !defined(MAXBUF_H_INCLUDED)
|
|
#define MAXBUF_H_INCLUDED
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
#define MAXBUF 256 // length of text buffers used for filenames,
|
|
// IP adresses (this is plenty big), HTTP response ( like
|
|
// "200 OK", again, plenty big), registry keys,
|
|
// and occasionally just to format an arbitrary string.
|
|
|
|
#endif // !defined(MAXBUF_H_INCLUDED)
|