Source code of Windows XP (NT5)
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.

26 lines
1.1 KiB

  1. #ifndef _INC_SHLWAPI
  2. // If these routines are not already defined in shlwapi, do it here.
  3. #define OFFSET(x) ((PTSTR)(LOWORD((DWORD)(x))))
  4. extern UINT PASCAL StrCpyN( LPTSTR lpDest, LPTSTR lpSource, short nBufSize );
  5. extern LPTSTR PASCAL StrChr( LPTSTR lpStart, WORD wMatch );
  6. extern LPTSTR PASCAL StrRChr( LPTSTR lpStart, LPTSTR lpEnd, WORD wMatch );
  7. extern LPTSTR PASCAL StrChrI( LPTSTR lpStart, WORD wMatch );
  8. extern LPTSTR PASCAL StrRChrI( LPTSTR lpStart, LPTSTR lpEnd, WORD wMatch );
  9. extern LPTSTR PASCAL StrStr( LPTSTR lpFirst, LPTSTR lpSrch );
  10. extern LPTSTR PASCAL StrRStr( LPTSTR lpSource, LPTSTR lpLast, LPTSTR lpSrch );
  11. extern LPTSTR PASCAL StrStrI( LPTSTR lpFirst, LPTSTR lpSrch );
  12. extern LPTSTR PASCAL StrRStrI( LPTSTR lpSource, LPTSTR lpLast, LPTSTR lpSrch );
  13. extern short PASCAL StrCmpN( LPTSTR lpStr1, LPTSTR lpStr2, short nChar );
  14. extern short PASCAL StrCmpNI( LPTSTR lpStr1, LPTSTR lpStr2, short nChar );
  15. #endif
  16. /****************************************************************************
  17. * $lgb$
  18. * 1.0 7-Mar-94 eric Initial revision.
  19. * $lge$
  20. *
  21. ****************************************************************************/