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.

22 lines
572 B

  1. #pragma once
  2. #define STATUS
  3. #ifdef STATUS
  4. #define STATUSMSG wprintf
  5. #else
  6. #define STATUSMSG 1 ? (void)0 : (void)
  7. #endif
  8. #define ERRMSG wprintf(L"%s ", g_szErrorPrefix); wprintf
  9. // always leave asserts on for internal tool
  10. #define ASSERT(x) assert(x)
  11. HRESULT GetChild(const CComVariant &varChild,
  12. const CComPtr<IXMLElementCollection> &spcol,
  13. CComPtr<IXMLElement> &spEltOut);
  14. // this is so build.exe will filter and print our errors to the console
  15. const WCHAR g_szErrorPrefix[] = L"comptree : fatal error -: ";