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.

18 lines
332 B

  1. #ifndef _UTILS_H_
  2. #define _UTILS_H_
  3. // macro definitions
  4. #define MAX_URL INTERNET_MAX_URL_LENGTH
  5. #ifndef ISNULL
  6. #define ISNULL(psz) (*(psz) == TEXT('\0'))
  7. #endif
  8. #ifndef ISNONNULL
  9. #define ISNONNULL(psz) (*(psz) != TEXT('\0'))
  10. #endif
  11. // prototype declarations
  12. void ShortPathName(LPTSTR pszFileName);
  13. #endif