home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / perfmon / sizes.h < prev    next >
Text File  |  1994-10-13  |  2KB  |  46 lines

  1.  
  2. #define FilePathLen                256
  3.  
  4.  
  5. //==========================================================================//
  6. //                                 Other                                    //
  7. //==========================================================================//
  8.  
  9.  
  10. #define ControlStringLen           160
  11. #define MenuStringLen               80
  12. #define MessageLen                 160
  13. #define ProfileValueLen            120
  14. #define ProfileKeyLen               80
  15. #define WindowCaptionLen            40
  16. #define ResourceStringLen           40
  17.  
  18. #define MiscTextLen                 80
  19. #define ShortTextLen                25
  20. #define LongTextLen                256
  21. #define TEMP_BUF_LEN               256
  22.  
  23.  
  24. //==========================================================================//
  25. //                         Perfmon-Related Sizes                            //
  26. //==========================================================================//
  27.  
  28.  
  29. #define PerfObjectLen               80
  30.  
  31. #define MAX_SYSTEM_NAME_LENGTH      128
  32. #define DEFAULT_COUNTER_NAME_SIZE   (2 * 4096)
  33. #define DEFAULT_COUNTER_HELP_SIZE   (24 * 4096)
  34. #define SMALL_BUF_LEN   16  // For numeric strings done in ASCII or whatever
  35. #define STARTING_SYSINFO_SIZE   (48L * 1024L)
  36. #define NM_BUF_SIZE         64
  37.  
  38. // the min and max of time interval in sec
  39. #define MAX_INTERVALSEC    (FLOAT)2000000.0
  40. #define MIN_INTERVALSEC    (FLOAT)0.0
  41.  
  42. // the min and max for the Graph Vertical max.
  43. #define MAX_VERTICAL        2000000000
  44. #define MIN_VERTICAL        1
  45. 
  46.