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.

19 lines
691 B

  1. //
  2. // CrtFree.h
  3. //
  4. // History:
  5. // 18-NOV-1999 CSLim Created
  6. #if !defined (__CRTFREE_H__INCLUDED_) && defined(NOCLIB)
  7. #define __CRTFREE_H__INCLUDED_
  8. extern LPWSTR ImeRtl_StrCopyW(LPWSTR pwDest, LPCWSTR pwSrc);
  9. extern LPWSTR ImeRtl_StrnCopyW(LPWSTR pwDest, LPCWSTR pwSrc, UINT uiCount);
  10. extern INT ImeRtl_StrCmpW(LPCWSTR pwSz1, LPCWSTR pwSz2);
  11. extern INT ImeRtl_StrnCmpW(LPCWSTR wszFirst, LPCWSTR wszLast, UINT uiCount);
  12. // Since immxlib.lib call memmove internaly, we should define this function
  13. // specifically ptrary.cpp, strary.cpp and fontlink.cpp
  14. extern void * __cdecl memmove(void * dst, const void * src, size_t count);
  15. #endif // __CRTFREE_H__INCLUDED_