mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
568b27baeb
svn path=/trunk/; revision=13063
19 lines
460 B
C
19 lines
460 B
C
// panic.h
|
|
// This file is (C) 2003-2004 Royce Mitchell III
|
|
// and released under the BSD & LGPL licenses
|
|
|
|
#ifndef PANIC_H
|
|
#define PANIC_H
|
|
|
|
void panic ( const char* format, ... );
|
|
|
|
#define suAssert(expr) if ( !(expr) ) panic ( "%s(%lu): SOCKET ERROR %s\nExpression: %s\n", __FILE__, __LINE__, suErrDesc(SUERRNO), #expr )
|
|
|
|
#if defined(DEBUG) || defined(_DEBUG)
|
|
# define suVerify(expr) suAssert(expr)
|
|
#else
|
|
# define suVerify(expr) expr
|
|
#endif
|
|
|
|
#endif//PANIC_H
|