mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[CRT]
* Apply a consistent annotation to wcsncpy_s(). svn path=/trunk/; revision=59808
This commit is contained in:
parent
a6315c0206
commit
75daa9b8e6
1 changed files with 4 additions and 4 deletions
|
@ -978,10 +978,10 @@ extern "C" {
|
||||||
errno_t
|
errno_t
|
||||||
__cdecl
|
__cdecl
|
||||||
wcsncpy_s(
|
wcsncpy_s(
|
||||||
_Out_writes_z_(SizeInWords) wchar_t *_Dest,
|
_Out_writes_z_(_DstSizeInChars) wchar_t *_Dst,
|
||||||
_In_ size_t SizeInWords,
|
_In_ size_t _DstSizeInChars,
|
||||||
_In_z_ const wchar_t *_Source,
|
_In_z_ const wchar_t *_Src,
|
||||||
_In_ size_t _Count);
|
_In_ size_t _MaxCount);
|
||||||
|
|
||||||
_Check_return_wat_
|
_Check_return_wat_
|
||||||
_CRTIMP
|
_CRTIMP
|
||||||
|
|
Loading…
Reference in a new issue