git @ Cat's Eye Technologies linapple / stylistic-cleanup inc / Log.h
stylistic-cleanup

Tree @stylistic-cleanup (Download .tar.gz)

Log.h @stylistic-cleanupraw · history · blame

#pragma once

#ifndef _VC71  // __VA_ARGS__ not supported on MSVC++ .NET 7.x
  #ifdef _DEBUG
    #define LOG(format, ...) LogOutput(format, __VA_ARGS__)
  #else
    #define LOG(...)
  #endif
#endif

extern void LogOutput(LPCTSTR format, ...);