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
35 lines
724 B
/*
|
|
|
|
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.
|
|
);
|