Leaked source code of windows server 2003
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.

47 lines
526 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. findleak.hxx
  5. Abstract:
  6. Author:
  7. David J. Gilman (davegi) 02-Mar-1991
  8. Environment:
  9. ULIB, User Mode
  10. --*/
  11. #if ! defined( _FINDLEAK_ )
  12. #define _FINDLEAK_
  13. DEFINE_CLASS_POINTER_AND_REFERENCE_TYPES( FINDLEAK );
  14. class FINDLEAK : public PROGRAM {
  15. public:
  16. DECLARE_CONSTRUCTOR( FINDLEAK );
  17. VIRTUAL
  18. BOOLEAN
  19. Initialize (
  20. );
  21. private:
  22. NONVIRTUAL
  23. VOID
  24. Construct (
  25. );
  26. };
  27. #endif // _FINDLEAK_