Skip to content

Commit

Permalink
[LICENSE] Use MIT License
Browse files Browse the repository at this point in the history
  • Loading branch information
RatinCN committed Jul 27, 2024
1 parent 9058b94 commit 0b60c83
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 384 deletions.
394 changes: 21 additions & 373 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Runtime environment: NT6 or above OS, x86/x64/ARM64 platform.
[![GitHub License](https://img.shields.io/github/license/KNSoft/KNSoft.SlimDetours)](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE)
KNSoft.SlimDetours is licensed under the [MPL-2.0](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE) license.
KNSoft.SlimDetours is licensed under the [MIT](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE) license.
Source is based on [Microsoft Detours](https://github.com/microsoft/Detours) which is licensed under the [MIT](https://github.com/microsoft/Detours/blob/main/LICENSE) license.
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ SlimDetoursDelayAttach((PVOID*)&g_pfnFuncXxx,
[![GitHub License](https://img.shields.io/github/license/KNSoft/KNSoft.SlimDetours)](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE)
KNSoft.SlimDetours根据[MPL-2.0](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE)协议进行许可。
KNSoft.SlimDetours根据[MIT](https://github.com/KNSoft/KNSoft.SlimDetours/blob/main/LICENSE)协议进行许可。
源码基于[Microsoft Detours](https://github.com/microsoft/Detours),其根据[MIT](https://github.com/microsoft/Detours/blob/main/LICENSE)协议进行许可。
Expand Down
4 changes: 2 additions & 2 deletions Source/KNSoft.SlimDetours.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<authors>KNSoft</authors>
<projectUrl>https://github.com/KNSoft/KNSoft.SlimDetours</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">MPL-2.0</license>
<licenseUrl>https://licenses.nuget.org/MPL-2.0</licenseUrl>
<license type="expression">MIT</license>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<readme>README.md</readme>
<description>KNSoft.SlimDetours is an improved Windows API hooking library base on Microsoft Detours.</description>
<tags>native Windows Detours Hook Utility Runtime</tags>
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Disassembler.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Disassembler
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*
* Source base on Microsoft Detours:
*
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Instruction.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Instruction Utility
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*
* Source base on Microsoft Detours:
*
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Memory.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Memory Management
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*/

#include "SlimDetours.inl"
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/SlimDetours.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours)
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*
* Source base on Microsoft Detours:
*
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Thread.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Thread management
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*/

#include "SlimDetours.inl"
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Trampoline.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Trampoline management
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*
* Source base on Microsoft Detours:
*
Expand Down
2 changes: 1 addition & 1 deletion Source/SlimDetours/Transaction.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* KNSoft SlimDetours (https://github.com/KNSoft/SlimDetours) Transaction APIs
* Copyright (c) KNSoft.org (https://github.com/KNSoft). All rights reserved.
* Licensed under the MPL-2.0 license.
* Licensed under the MIT license.
*
* Source base on Microsoft Detours:
*
Expand Down

0 comments on commit 0b60c83

Please sign in to comment.