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.
35 lines
609 B
35 lines
609 B
/*
|
|
**++
|
|
**
|
|
** Copyright (c) 2002 Microsoft Corporation
|
|
**
|
|
**
|
|
** Module Name:
|
|
**
|
|
** assert.h
|
|
**
|
|
**
|
|
** Abstract:
|
|
**
|
|
** Defines my assert function since I can't use the built-in one
|
|
**
|
|
** Author:
|
|
**
|
|
** Reuven Lax [reuvenl] 04-June-2002
|
|
**
|
|
**
|
|
** Revision History:
|
|
**
|
|
**--
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
#include "sassert.h"
|
|
|
|
// really stupid assertion function...
|
|
void FailAssertion(const char* fileName, unsigned int lineNumber, const char* condition)
|
|
{
|
|
fprintf(stderr, "Assertion failure: %s\nFile: %s\nLine: %u\n", condition, fileName, lineNumber);
|
|
::DebugBreak();
|
|
}
|
|
|