Got rid of DOM code.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@361 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-04-27 19:40:44 +00:00
parent 6e8622e79a
commit c8016f0b2d
4 changed files with 82 additions and 7574 deletions

View File

@@ -172,7 +172,7 @@ Desc: The primary purpose of this function is to provide a way to easily
to catch them.
****************************************************************************/
#ifdef FLM_DEBUG
RCODE f_makeErr(
RCODE FLMAPI f_makeErr(
RCODE rc,
const char *, // pszFile,
int, // iLine,
@@ -504,6 +504,18 @@ Exit:
return( rc);
}
/****************************************************************************
Desc:
****************************************************************************/
void FLMAPI f_enterDebugger( void)
{
#ifdef FLM_WIN
DebugBreak();
#else
assert( 0);
#endif
}
/****************************************************************************
Desc:
****************************************************************************/