Completed adding support for ring 0 NLMs.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@407 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-11 22:42:00 +00:00
parent 4fc9d686ea
commit 6879d7b8ca
14 changed files with 6406 additions and 96 deletions

View File

@@ -774,6 +774,7 @@ FLMINT FLMAPI f_printf(
const char * pszFormat,
...)
{
#ifndef FLM_RING_ZERO_NLM
FLMINT iLen;
va_list args;
@@ -782,4 +783,8 @@ FLMINT FLMAPI f_printf(
va_end(args);
return( iLen);
#else
F_UNREFERENCED_PARM( pszFormat);
return( 0);
#endif
}