mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-09 17:19:26 +00:00
change SDK folders to lowercase
This commit is contained in:
parent
5e26626f91
commit
a9ba979abc
32 changed files with 42 additions and 36 deletions
3
examples/kernel/README.md
Normal file
3
examples/kernel/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
NOTE
|
||||
============
|
||||
Build it directly from the main HyperDbg solution file. Do not build it independently, as it requires dependency files from the main HyperDbg libraries to be built first.
|
||||
|
|
@ -45,15 +45,15 @@
|
|||
//
|
||||
// Import HyperLog Module
|
||||
//
|
||||
#include "SDK/modules1/HyperLog.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
#include "SDK/modules/HyperLog.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
|
||||
//
|
||||
// Import VMM Module
|
||||
//
|
||||
#include "SDK/modules1/VMM.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgVmmImports.h"
|
||||
#include "SDK/modules/VMM.h"
|
||||
#include "SDK/imports/kernel/HyperDbgVmmImports.h"
|
||||
|
||||
//
|
||||
// Local Driver headers
|
||||
|
|
|
|||
3
examples/user/README.md
Normal file
3
examples/user/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
NOTE
|
||||
============
|
||||
Build it directly from the main HyperDbg solution file. Do not build it independently, as it requires dependency files from the main HyperDbg libraries to be built first.
|
||||
|
|
@ -32,4 +32,4 @@
|
|||
// HyperDbg SDK headers
|
||||
//
|
||||
#include "SDK/HyperDbgSdk.h"
|
||||
#include "SDK/imports1/user/HyperDbgLibImports.h"
|
||||
#include "SDK/imports/user/HyperDbgLibImports.h"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include "SDK/HyperDbgSdk.h"
|
||||
#include "SDK/imports1/user/HyperDbgLibImports.h"
|
||||
#include "SDK/imports/user/HyperDbgLibImports.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
//
|
||||
// VMM Callbacks
|
||||
//
|
||||
#include "SDK/modules1/VMM.h"
|
||||
#include "SDK/modules/VMM.h"
|
||||
|
||||
//
|
||||
// The core's state
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
#include "vmm/vmx/Vmx.h"
|
||||
#include "vmm/vmx/VmxRegions.h"
|
||||
#include "vmm/ept/Ept.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgVmmImports.h"
|
||||
#include "SDK/imports/kernel/HyperDbgVmmImports.h"
|
||||
|
||||
//
|
||||
// VMX and Capabilities
|
||||
|
|
@ -159,5 +159,5 @@
|
|||
//
|
||||
// HyperLog Module
|
||||
//
|
||||
#include "SDK/modules1/HyperLog.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
#include "SDK/modules/HyperLog.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
|
|
|
|||
|
|
@ -59,15 +59,15 @@
|
|||
//
|
||||
// Import HyperLog Module
|
||||
//
|
||||
#include "SDK/modules1/HyperLog.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
#include "SDK/modules/HyperLog.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogIntrinsics.h"
|
||||
|
||||
//
|
||||
// Import VMM Module
|
||||
//
|
||||
#include "SDK/modules1/VMM.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgVmmImports.h"
|
||||
#include "SDK/modules/VMM.h"
|
||||
#include "SDK/imports/kernel/HyperDbgVmmImports.h"
|
||||
|
||||
//
|
||||
// Local Debugger headers
|
||||
|
|
|
|||
|
|
@ -40,8 +40,8 @@
|
|||
|
||||
#include "UnloadDll.h"
|
||||
#include "SDK/HyperDbgSdk.h"
|
||||
#include "SDK/modules1/HyperLog.h"
|
||||
#include "SDK/imports1/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "SDK/modules/HyperLog.h"
|
||||
#include "SDK/imports/kernel/HyperDbgHyperLogImports.h"
|
||||
#include "components/spinlock/header/Spinlock.h"
|
||||
#include "Logging.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
#pragma once
|
||||
|
||||
#include "SDK/headers1/Constants.h"
|
||||
#include "SDK/headers1/BasicTypes.h"
|
||||
#include "SDK/headers1/ErrorCodes.h"
|
||||
#include "SDK/headers1/Connection.h"
|
||||
#include "SDK/headers1/DataTypes.h"
|
||||
#include "SDK/headers1/Ioctls.h"
|
||||
#include "SDK/headers1/Events.h"
|
||||
#include "SDK/headers1/RequestStructures.h"
|
||||
#include "SDK/headers1/Symbols.h"
|
||||
#include "SDK/headers1/HardwareDebugger.h"
|
||||
#include "SDK/headers/Constants.h"
|
||||
#include "SDK/headers/BasicTypes.h"
|
||||
#include "SDK/headers/ErrorCodes.h"
|
||||
#include "SDK/headers/Connection.h"
|
||||
#include "SDK/headers/DataTypes.h"
|
||||
#include "SDK/headers/Ioctls.h"
|
||||
#include "SDK/headers/Events.h"
|
||||
#include "SDK/headers/RequestStructures.h"
|
||||
#include "SDK/headers/Symbols.h"
|
||||
#include "SDK/headers/HardwareDebugger.h"
|
||||
|
||||
//
|
||||
// Asserts
|
||||
//
|
||||
#include "SDK/headers1/Assertions.h"
|
||||
#include "SDK/headers/Assertions.h"
|
||||
|
||||
//
|
||||
// Script Engine
|
||||
//
|
||||
#include "SDK/headers1/ScriptEngineCommonDefinitions.h"
|
||||
#include "SDK/headers/ScriptEngineCommonDefinitions.h"
|
||||
|
|
|
|||
|
|
@ -137,8 +137,8 @@ typedef const wchar_t *LPCWCHAR, *PCWCHAR;
|
|||
//
|
||||
// Imports/Exports
|
||||
//
|
||||
#include "SDK/imports1/user/HyperDbgScriptImports.h"
|
||||
#include "SDK/imports1/user/HyperDbgLibImports.h"
|
||||
#include "SDK/imports/user/HyperDbgScriptImports.h"
|
||||
#include "SDK/imports/user/HyperDbgLibImports.h"
|
||||
|
||||
//
|
||||
// General
|
||||
|
|
|
|||
|
|
@ -30,12 +30,12 @@
|
|||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "SDK/imports1/user/HyperDbgSymImports.h"
|
||||
#include "SDK/headers1/HardwareDebugger.h"
|
||||
#include "SDK/imports/user/HyperDbgSymImports.h"
|
||||
#include "SDK/headers/HardwareDebugger.h"
|
||||
#include "common.h"
|
||||
#include "scanner.h"
|
||||
#include "globals.h"
|
||||
#include "..\include\SDK\headers1\ScriptEngineCommonDefinitions.h"
|
||||
#include "..\include\SDK\headers\ScriptEngineCommonDefinitions.h"
|
||||
#include "script-engine.h"
|
||||
#include "parse-table.h"
|
||||
#include "type.h"
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ typedef RFLAGS * PRFLAGS;
|
|||
#endif // USE_LIB_IA32
|
||||
|
||||
#include "SDK/HyperDbgSdk.h"
|
||||
#include "SDK/imports1/user/HyperDbgLibImports.h"
|
||||
#include "SDK/imports/user/HyperDbgLibImports.h"
|
||||
#include "Definition.h"
|
||||
#include "..\symbol-parser\header\common-utils.h"
|
||||
#include "..\symbol-parser\header\symbol-parser.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue