Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修正Wow64DisableWow64FsRedirection和Wow64RevertWow64FsRedirection的系统起始支持版本号 #119

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Thunks/api-ms-win-core-wow64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace YY::Thunks
{
#if (YY_Thunks_Target < __WindowsNT5_2)
#if (YY_Thunks_Target < __WindowsNT5_2_SP1)

//Windows XP Professional x64 Edition, Windows Server 2003
//Windows XP Professional x64 Edition, Windows Server 2003 SP1
__DEFINE_THUNK(
kernel32,
4,
Expand All @@ -27,9 +27,9 @@ namespace YY::Thunks
#endif


#if (YY_Thunks_Target < __WindowsNT5_2)
#if (YY_Thunks_Target < __WindowsNT5_2_SP1)

//Windows XP Professional x64 Edition, Windows Server 2003
//Windows XP Professional x64 Edition, Windows Server 2003 SP1
__DEFINE_THUNK(
kernel32,
4,
Expand Down
Loading