Skip to content

Commit

Permalink
Final update for version 2.0
Browse files Browse the repository at this point in the history
- Use the correct path format.
- Use a dummy registry key instead of a global boolean.
- Update CMakeLists.
- Fix indentation (use 4 spaces).
- Fix source files encoding.
- Trivial fixes.
  • Loading branch information
TAN-Gaming committed Dec 7, 2024
1 parent 5f84805 commit d8e7e43
Show file tree
Hide file tree
Showing 8 changed files with 710 additions and 676 deletions.
57 changes: 29 additions & 28 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,28 +1,29 @@
cmake_minimum_required(VERSION 3.15)

project(FalloutNV_NoReg LANGUAGES CXX RC)

# Check 32-Bit
if(NOT (CMAKE_SIZEOF_VOID_P EQUAL 4))
message(FATAL_ERROR "Only 32-bit is supported.")
endif()

# Find MinHook
set(MINHOOK_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/minhook/include)

if(MINGW)
set(MINHOOK_LIBRARY ${CMAKE_CURRENT_SOURCE_DIR}/minhook/lib32-mingw/minhook.x32.a)
endif()

add_library(NoRegPatch SHARED
NoRegPatch.c
version.rc
GalaxyWrp.def
)

set_target_properties(NoRegPatch PROPERTIES PREFIX "")
set_target_properties(NoRegPatch PROPERTIES OUTPUT_NAME "GalaxyWrp")
set_target_properties(NoRegPatch PROPERTIES SUFFIX ".dll")

target_include_directories(NoRegPatch PRIVATE ${MINHOOK_INCLUDE_DIR})
target_link_libraries(NoRegPatch ${MINHOOK_LIBRARY})
cmake_minimum_required(VERSION 3.13.5)

project(NoRegPatch-FalloutNV LANGUAGES C RC)

# Check for 32-bit Windows
if(NOT (WIN32 AND (CMAKE_SIZEOF_VOID_P EQUAL 4)))
message(FATAL_ERROR "32-bit Windows is the only supported platform!")
endif()

# Find MinHook
set(MINHOOK_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/minhook/include)
if(MINGW)
set(MINHOOK_LIBRARY ${PROJECT_SOURCE_DIR}/minhook/lib32-mingw/minhook.x32.a)
else()
message(FATAL_ERROR "Compiler not supported!")
endif()

add_library(NoRegPatch SHARED
NoRegPatch.c
version.rc
GalaxyWrp.def
)

set_target_properties(NoRegPatch PROPERTIES PREFIX "")
set_target_properties(NoRegPatch PROPERTIES OUTPUT_NAME "GalaxyWrp")
set_target_properties(NoRegPatch PROPERTIES SUFFIX ".dll")

target_include_directories(NoRegPatch PRIVATE ${MINHOOK_INCLUDE_DIR})
target_link_libraries(NoRegPatch ${MINHOOK_LIBRARY})
104 changes: 52 additions & 52 deletions GalaxyWrp.def
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
LIBRARY GalaxyWrp
EXPORTS
GetHSteamPipe = orig_GalaxyWrp.GetHSteamPipe
GetHSteamUser = orig_GalaxyWrp.GetHSteamUser
SteamAPI_GetHSteamPipe = orig_GalaxyWrp.SteamAPI_GetHSteamPipe
SteamAPI_GetHSteamUser = orig_GalaxyWrp.SteamAPI_GetHSteamUser
SteamAPI_GetSteamInstallPath = orig_GalaxyWrp.SteamAPI_GetSteamInstallPath
SteamAPI_Init = orig_GalaxyWrp.SteamAPI_Init
SteamAPI_InitSafe = orig_GalaxyWrp.SteamAPI_InitSafe
SteamAPI_IsSteamRunning = orig_GalaxyWrp.SteamAPI_IsSteamRunning
SteamAPI_RegisterCallResult = orig_GalaxyWrp.SteamAPI_RegisterCallResult
SteamAPI_RegisterCallback = orig_GalaxyWrp.SteamAPI_RegisterCallback
SteamAPI_RestartApp = orig_GalaxyWrp.SteamAPI_RestartApp
SteamAPI_RestartAppIfNecessary = orig_GalaxyWrp.SteamAPI_RestartAppIfNecessary
SteamAPI_RunCallbacks = orig_GalaxyWrp.SteamAPI_RunCallbacks
SteamAPI_SetMiniDumpComment = orig_GalaxyWrp.SteamAPI_SetMiniDumpComment
SteamAPI_SetTryCatchCallbacks = orig_GalaxyWrp.SteamAPI_SetTryCatchCallbacks
SteamAPI_Shutdown = orig_GalaxyWrp.SteamAPI_Shutdown
SteamAPI_UnregisterCallResult = orig_GalaxyWrp.SteamAPI_UnregisterCallResult
SteamAPI_UnregisterCallback = orig_GalaxyWrp.SteamAPI_UnregisterCallback
SteamAPI_WriteMiniDump = orig_GalaxyWrp.SteamAPI_WriteMiniDump
SteamApps = orig_GalaxyWrp.SteamApps
SteamClient = orig_GalaxyWrp.SteamClient
SteamContentServer = orig_GalaxyWrp.SteamContentServer
SteamContentServerUtils = orig_GalaxyWrp.SteamContentServerUtils
SteamContentServer_Init = orig_GalaxyWrp.SteamContentServer_Init
SteamContentServer_RunCallbacks = orig_GalaxyWrp.SteamContentServer_RunCallbacks
SteamContentServer_Shutdown = orig_GalaxyWrp.SteamContentServer_Shutdown
SteamFriends = orig_GalaxyWrp.SteamFriends
SteamGameServer = orig_GalaxyWrp.SteamGameServer
SteamGameServerUtils = orig_GalaxyWrp.SteamGameServerUtils
SteamGameServer_BSecure = orig_GalaxyWrp.SteamGameServer_BSecure
SteamGameServer_GetHSteamPipe = orig_GalaxyWrp.SteamGameServer_GetHSteamPipe
SteamGameServer_GetHSteamUser = orig_GalaxyWrp.SteamGameServer_GetHSteamUser
SteamGameServer_GetIPCCallCount = orig_GalaxyWrp.SteamGameServer_GetIPCCallCount
SteamGameServer_GetSteamID = orig_GalaxyWrp.SteamGameServer_GetSteamID
SteamGameServer_Init = orig_GalaxyWrp.SteamGameServer_Init
SteamGameServer_InitSafe = orig_GalaxyWrp.SteamGameServer_InitSafe
SteamGameServer_RunCallbacks = orig_GalaxyWrp.SteamGameServer_RunCallbacks
SteamGameServer_Shutdown = orig_GalaxyWrp.SteamGameServer_Shutdown
SteamMasterServerUpdater = orig_GalaxyWrp.SteamMasterServerUpdater
SteamMatchmaking = orig_GalaxyWrp.SteamMatchmaking
SteamMatchmakingServers = orig_GalaxyWrp.SteamMatchmakingServers
SteamNetworking = orig_GalaxyWrp.SteamNetworking
SteamRemoteStorage = orig_GalaxyWrp.SteamRemoteStorage
SteamUser = orig_GalaxyWrp.SteamUser
SteamUserStats = orig_GalaxyWrp.SteamUserStats
SteamUtils = orig_GalaxyWrp.SteamUtils
Steam_GetHSteamUserCurrent = orig_GalaxyWrp.Steam_GetHSteamUserCurrent
Steam_RegisterInterfaceFuncs = orig_GalaxyWrp.Steam_RegisterInterfaceFuncs
Steam_RunCallbacks = orig_GalaxyWrp.Steam_RunCallbacks
g_pSteamClientGameServer = orig_GalaxyWrp.g_pSteamClientGameServer
LIBRARY GalaxyWrp
EXPORTS
GetHSteamPipe = orig_GalaxyWrp.GetHSteamPipe
GetHSteamUser = orig_GalaxyWrp.GetHSteamUser
SteamAPI_GetHSteamPipe = orig_GalaxyWrp.SteamAPI_GetHSteamPipe
SteamAPI_GetHSteamUser = orig_GalaxyWrp.SteamAPI_GetHSteamUser
SteamAPI_GetSteamInstallPath = orig_GalaxyWrp.SteamAPI_GetSteamInstallPath
SteamAPI_Init = orig_GalaxyWrp.SteamAPI_Init
SteamAPI_InitSafe = orig_GalaxyWrp.SteamAPI_InitSafe
SteamAPI_IsSteamRunning = orig_GalaxyWrp.SteamAPI_IsSteamRunning
SteamAPI_RegisterCallResult = orig_GalaxyWrp.SteamAPI_RegisterCallResult
SteamAPI_RegisterCallback = orig_GalaxyWrp.SteamAPI_RegisterCallback
SteamAPI_RestartApp = orig_GalaxyWrp.SteamAPI_RestartApp
SteamAPI_RestartAppIfNecessary = orig_GalaxyWrp.SteamAPI_RestartAppIfNecessary
SteamAPI_RunCallbacks = orig_GalaxyWrp.SteamAPI_RunCallbacks
SteamAPI_SetMiniDumpComment = orig_GalaxyWrp.SteamAPI_SetMiniDumpComment
SteamAPI_SetTryCatchCallbacks = orig_GalaxyWrp.SteamAPI_SetTryCatchCallbacks
SteamAPI_Shutdown = orig_GalaxyWrp.SteamAPI_Shutdown
SteamAPI_UnregisterCallResult = orig_GalaxyWrp.SteamAPI_UnregisterCallResult
SteamAPI_UnregisterCallback = orig_GalaxyWrp.SteamAPI_UnregisterCallback
SteamAPI_WriteMiniDump = orig_GalaxyWrp.SteamAPI_WriteMiniDump
SteamApps = orig_GalaxyWrp.SteamApps
SteamClient = orig_GalaxyWrp.SteamClient
SteamContentServer = orig_GalaxyWrp.SteamContentServer
SteamContentServerUtils = orig_GalaxyWrp.SteamContentServerUtils
SteamContentServer_Init = orig_GalaxyWrp.SteamContentServer_Init
SteamContentServer_RunCallbacks = orig_GalaxyWrp.SteamContentServer_RunCallbacks
SteamContentServer_Shutdown = orig_GalaxyWrp.SteamContentServer_Shutdown
SteamFriends = orig_GalaxyWrp.SteamFriends
SteamGameServer = orig_GalaxyWrp.SteamGameServer
SteamGameServerUtils = orig_GalaxyWrp.SteamGameServerUtils
SteamGameServer_BSecure = orig_GalaxyWrp.SteamGameServer_BSecure
SteamGameServer_GetHSteamPipe = orig_GalaxyWrp.SteamGameServer_GetHSteamPipe
SteamGameServer_GetHSteamUser = orig_GalaxyWrp.SteamGameServer_GetHSteamUser
SteamGameServer_GetIPCCallCount = orig_GalaxyWrp.SteamGameServer_GetIPCCallCount
SteamGameServer_GetSteamID = orig_GalaxyWrp.SteamGameServer_GetSteamID
SteamGameServer_Init = orig_GalaxyWrp.SteamGameServer_Init
SteamGameServer_InitSafe = orig_GalaxyWrp.SteamGameServer_InitSafe
SteamGameServer_RunCallbacks = orig_GalaxyWrp.SteamGameServer_RunCallbacks
SteamGameServer_Shutdown = orig_GalaxyWrp.SteamGameServer_Shutdown
SteamMasterServerUpdater = orig_GalaxyWrp.SteamMasterServerUpdater
SteamMatchmaking = orig_GalaxyWrp.SteamMatchmaking
SteamMatchmakingServers = orig_GalaxyWrp.SteamMatchmakingServers
SteamNetworking = orig_GalaxyWrp.SteamNetworking
SteamRemoteStorage = orig_GalaxyWrp.SteamRemoteStorage
SteamUser = orig_GalaxyWrp.SteamUser
SteamUserStats = orig_GalaxyWrp.SteamUserStats
SteamUtils = orig_GalaxyWrp.SteamUtils
Steam_GetHSteamUserCurrent = orig_GalaxyWrp.Steam_GetHSteamUserCurrent
Steam_RegisterInterfaceFuncs = orig_GalaxyWrp.Steam_RegisterInterfaceFuncs
Steam_RunCallbacks = orig_GalaxyWrp.Steam_RunCallbacks
g_pSteamClientGameServer = orig_GalaxyWrp.g_pSteamClientGameServer
208 changes: 104 additions & 104 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,104 +1,104 @@
No-Registry Patch for Fallout New Vegas

Copyright (C) 2021-2023 TANGaming <https://github.com/TAN-Gaming>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

================================================================================
MinHook - The Minimalistic API Hooking Library for x64/x86
================================================================================

Copyright (C) 2009-2017 Tsuda Kageyu.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-------------------------------------------------------------------------------
Hacker Disassembler Engine 32 C
Copyright (c) 2008-2009, Vyacheslav Patkov.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-------------------------------------------------------------------------------
Hacker Disassembler Engine 64 C
Copyright (c) 2008-2009, Vyacheslav Patkov.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
No-Registry Patch for Fallout New Vegas
Copyright (C) 2021-2024 Thamatip Chitpong <tangaming123456@outlook.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================================================
MinHook - The Minimalistic API Hooking Library for x64/x86
================================================================================
Copyright (C) 2009-2017 Tsuda Kageyu.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-------------------------------------------------------------------------------
Hacker Disassembler Engine 32 C
Copyright (c) 2008-2009, Vyacheslav Patkov.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-------------------------------------------------------------------------------
Hacker Disassembler Engine 64 C
Copyright (c) 2008-2009, Vyacheslav Patkov.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Loading

0 comments on commit d8e7e43

Please sign in to comment.