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
525 B

  1. //
  2. // cuistr.h
  3. // = handling string functions in CUILIB =
  4. //
  5. #ifndef CUISTR_H
  6. #define CUISTR_H
  7. extern int CUIStrCmpW( const WCHAR *pwch1, const WCHAR *pwch2 );
  8. extern WCHAR *CUIStrCpyW( WCHAR *pwchDst, const WCHAR *pwchSrc );
  9. extern int CUIStrLenW( const WCHAR *pwch );
  10. #define StrCmpW( pwch1, pwch2 ) CUIStrCmpW( (pwch1), (pwch2) )
  11. #define StrCpyW( pwchDst, pwchSrc ) CUIStrCpyW( (pwchDst), (pwchSrc) )
  12. #define StrLenW( pwch ) CUIStrLenW( (pwch) )
  13. #endif /* CUISTR_H */