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.

49 lines
524 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. DOCK.H
  5. Abstract:
  6. This module contains the common private declarations for the undock tester
  7. Author:
  8. Kenneth Ray
  9. Environment:
  10. User Mode Only
  11. Notes:
  12. Revision History:
  13. Created June 98
  14. --*/
  15. #ifndef DOCK_H
  16. #define DOCK_H
  17. #pragma warning(error:4100) // Unreferenced formal parameter
  18. #pragma warning(error:4705) // Statement has no effect
  19. #define MIN(_A_,_B_) (((_A_) < (_B_)) ? (_A_) : (_B_))
  20. //
  21. // Prototypes
  22. //
  23. #endif