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.

35 lines
724 B

  1. /*
  2. Copyright (c) 2002, Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. safestr.h
  5. Abstract:
  6. Safe, secure string handling routines.
  7. Authors and History:
  8. 23 Jan 2002 : RaymondS added:
  9. SecStrCpyW, SecStrCatW
  10. Environment:
  11. User Level: Win32
  12. --*/
  13. wchar_t * SecStrCpyW(
  14. wchar_t * strDest, // Destination
  15. const wchar_t * strSource, // Source
  16. SIZE_T destSize // Total size of Destination in characters.
  17. );
  18. wchar_t * SecStrCatW(
  19. wchar_t * strDest, // Destination
  20. const wchar_t * strSource, // Source
  21. SIZE_T destSize // Total size of Destination in characters.
  22. );