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.
|
|
/*
Copyright (c) 2002, Microsoft Corporation. All rights reserved.
Module Name:
safestr.h
Abstract:
Safe, secure string handling routines.
Authors and History: 23 Jan 2002 : RaymondS added: SecStrCpyW, SecStrCatW Environment:
User Level: Win32
--*/
wchar_t * SecStrCpyW( wchar_t * strDest, // Destination
const wchar_t * strSource, // Source
SIZE_T destSize // Total size of Destination in characters.
);
wchar_t * SecStrCatW( wchar_t * strDest, // Destination
const wchar_t * strSource, // Source
SIZE_T destSize // Total size of Destination in characters.
);
|