mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-09 17:19:26 +00:00
add git attributes
This commit is contained in:
parent
449ecf9101
commit
a4d0573175
3 changed files with 34 additions and 1 deletions
22
.gitattributes
vendored
Normal file
22
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
|
||||
# Custom for Visual Studio
|
||||
*.cs diff=csharp
|
||||
*.sln merge=union
|
||||
*.csproj merge=union
|
||||
*.vbproj merge=union
|
||||
*.fsproj merge=union
|
||||
*.dbproj merge=union
|
||||
|
||||
# Standard to msysgit
|
||||
*.doc diff=astextplain
|
||||
*.DOC diff=astextplain
|
||||
*.docx diff=astextplain
|
||||
*.DOCX diff=astextplain
|
||||
*.dot diff=astextplain
|
||||
*.DOT diff=astextplain
|
||||
*.pdf diff=astextplain
|
||||
*.PDF diff=astextplain
|
||||
*.rtf diff=astextplain
|
||||
*.RTF diff=astextplain
|
||||
|
|
@ -36,6 +36,12 @@ DebuggerInitialize()
|
|||
InitializeListHead(&g_GuestState[i].Events.HiddenHooksExecDetourEvents);
|
||||
InitializeListHead(&g_GuestState[i].Events.SyscallHooksEferEvents);
|
||||
}
|
||||
|
||||
//
|
||||
// Enabled Debugger Events
|
||||
//
|
||||
g_EnableDebuggerEvents = TRUE;
|
||||
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
// Temporary test everything here
|
||||
|
|
@ -105,7 +111,6 @@ DebuggerInitialize()
|
|||
//
|
||||
DebuggerAddActionToEvent(Event1, BREAK_TO_DEBUGGER, FALSE, NULL, NULL);
|
||||
|
||||
DbgBreakPoint();
|
||||
//
|
||||
// Call to register
|
||||
//
|
||||
|
|
|
|||
|
|
@ -52,3 +52,9 @@ BOOLEAN g_ExecuteOnlySupport;
|
|||
*
|
||||
*/
|
||||
BOOLEAN g_AllowIOCTLFromUsermode;
|
||||
|
||||
/**
|
||||
* @brief Determines whether the debugger events should be active or not
|
||||
*
|
||||
*/
|
||||
BOOLEAN g_EnableDebuggerEvents;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue