Source code of Windows XP (NT5)
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

  1. //
  2. // MODULE: MAXBUF.H
  3. //
  4. // PURPOSE: Declare buffer size macro
  5. //
  6. // PROJECT: Generic Troubleshooter DLL for Microsoft AnswerPoint
  7. //
  8. // COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
  9. //
  10. // AUTHOR: Joe Mabel
  11. //
  12. // ORIGINAL DATE: 01-06-98
  13. //
  14. // NOTES:
  15. //
  16. // Version Date By Comments
  17. //--------------------------------------------------------------------
  18. // V3.1 01-06-98 JM get MAXBUF into a header file of its own
  19. //
  20. #if !defined(MAXBUF_H_INCLUDED)
  21. #define MAXBUF_H_INCLUDED
  22. #if _MSC_VER >= 1000
  23. #pragma once
  24. #endif // _MSC_VER >= 1000
  25. #define MAXBUF 256 // length of text buffers used for filenames,
  26. // IP adresses (this is plenty big), HTTP response ( like
  27. // "200 OK", again, plenty big), registry keys,
  28. // and occasionally just to format an arbitrary string.
  29. #endif // !defined(MAXBUF_H_INCLUDED)