msvc compatibility

svn path=/trunk/; revision=19671
This commit is contained in:
Royce Mitchell III 2005-11-27 05:53:01 +00:00
parent 4ff9658852
commit 9f87d33ef0

View file

@ -94,8 +94,17 @@ RtlAssert(
#else
/* On non-debug builds, we never show these */
#ifdef _MSC_VER
static __inline void DPRINT1 ( const char* fmt, ... )
{
}
static __inline void DPRINT ( const char* fmt, ... )
{
}
#else
#define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
#endif
#define CHECKPOINT1
#define CHECKPOINT
#define UNIMPLEMENTED