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.

36 lines
456 B

  1. /*++
  2. Copyright (c) 1994 Microsoft Corporation
  3. Module Name:
  4. macro.h
  5. Abstract:
  6. This module contains the macro definitions for the DHCP client.
  7. Author:
  8. Manny Weiser (mannyw) 21-Oct-1992
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. //
  14. // General purpose macros
  15. //
  16. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  17. #if DBG
  18. #define STATIC
  19. #else
  20. #define STATIC static
  21. #endif