Leaked source code of windows server 2003
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.
 
 
 
 
 
 

14 lines
380 B

#if !defined(BASE__String_inl__INCLUDED)
#define BASE__String_inl__INCLUDED
#pragma once
//------------------------------------------------------------------------------
inline void
CopyString(WCHAR * pszDest, const WCHAR * pszSrc, int cchMax)
{
wcsncpy(pszDest, pszSrc, cchMax);
pszDest[cchMax - 1] = '\0';
}
#endif // BASE__String_inl__INCLUDED