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.

23 lines
471 B

  1. //
  2. // TrustPriv.h
  3. //
  4. // Some private trust settings for trust.cpp
  5. //
  6. // History:
  7. //
  8. // 2001-11-05 KenSh Created
  9. //
  10. #pragma once
  11. //
  12. // Disable IU logging if requested
  13. //
  14. #ifdef DISABLE_IU_LOGGING
  15. inline void __cdecl LOG_Block(LPCSTR, ...) { }
  16. inline void __cdecl LOG_Error(LPCTSTR, ...) { }
  17. inline void __cdecl LOG_Trust(LPCTSTR, ...) { }
  18. inline void __cdecl LogError(HRESULT, LPCSTR, ...) { }
  19. inline void LOG_ErrorMsg(HRESULT) { }
  20. #endif