Added f_getcwd().

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@450 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-24 19:26:29 +00:00
parent d162adb63a
commit a3fda8265f
5 changed files with 56 additions and 0 deletions

View File

@@ -4084,6 +4084,18 @@ RCODE FLMAPI f_chdir(
}
#endif
/**********************************************************************
Desc:
**********************************************************************/
#if defined( FLM_RING_ZERO_NLM)
RCODE FLMAPI f_getcwd(
char * pszDir)
{
*pszDir = NULL;
return( RC_SET( NE_FLM_NOT_IMPLEMENTED));
}
#endif
#endif // FLM_NLM
/****************************************************************************