Skip to content
This repository has been archived by the owner on Dec 8, 2021. It is now read-only.

Commit

Permalink
解决编译不通过问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mingkuang-Chuyu committed Apr 25, 2017
1 parent 734d599 commit 4659571
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ VC LTL 是一个开源的第三方修改VC库,大家都可以免费,无条


## Changes:
1.0.0.8 2017-04-25 14:00
1.0.0.8 2017-04-25 20:37
* 简化库引用方式
* 更新14393 ucrt到最新版(2017-01-05版)
* 添加15063 ucrt支持

1.0.0.7 2017-04-22 19:26
* 初步添加Windows XP支持
Expand Down
6 changes: 3 additions & 3 deletions _msvcrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ extern "C"
_In_ uintptr_t
);

inline void __cdecl _invalid_parameter_noinfo_noreturn(void)
void __cdecl _invalid_parameter_noinfo_noreturn(void)
{
_invalid_parameter(nullptr, nullptr, nullptr, 0, 0);
_invoke_watson(nullptr, nullptr, nullptr, 0, 0);

__debugbreak();
}

inline errno_t __CRTDECL wmemcpy_s(
errno_t __CRTDECL wmemcpy_s(
_Out_writes_to_opt_(_N1, _N) wchar_t* _S1,
_In_ rsize_t _N1,
_In_reads_opt_(_N) wchar_t const* _S2,
Expand All @@ -234,7 +234,7 @@ extern "C"
return memcpy_s(_S1, _N1 * sizeof(wchar_t), _S2, _N * sizeof(wchar_t));
}

inline errno_t __CRTDECL wmemmove_s(
errno_t __CRTDECL wmemmove_s(
_Out_writes_to_opt_(_N1, _N) wchar_t* _S1,
_In_ rsize_t _N1,
_In_reads_opt_(_N) wchar_t const* _S2,
Expand Down
Binary file added x64/ltl140.lib
Binary file not shown.
Binary file added x64/ltl140xp.lib
Binary file not shown.
Binary file added x64/ltl141.lib
Binary file not shown.
Binary file added x64/ltl141xp.lib
Binary file not shown.
Binary file added x86/ltl140.lib
Binary file not shown.
Binary file added x86/ltl140xp.lib
Binary file not shown.
Binary file added x86/ltl141.lib
Binary file not shown.
Binary file added x86/ltl141xp.lib
Binary file not shown.

0 comments on commit 4659571

Please sign in to comment.