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.

34 lines
620 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. hackwc.hxx
  5. Abstract:
  6. This module contains the prototype for a hack that allows me
  7. to compare attribute names correctly.
  8. The comparison of attribute names is binary (word by word);
  9. I can't use WSTRING because it's comparisons are all based
  10. on the locale, while this comparison is locale-independent.
  11. Author:
  12. Bill McJohn (billmc) 14-Aug-91
  13. Environment:
  14. ULIB, User Mode
  15. --*/
  16. INT
  17. CountedWCMemCmp(
  18. IN PCWSTR String1,
  19. IN ULONG Length1,
  20. IN PCWSTR String2,
  21. IN ULONG Length2
  22. );