mirror of https://github.com/x64dbg/GleeBug
initial structure
This commit is contained in:
parent
bf9cade407
commit
cd6b15fd8c
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef _DEBUGGER_DLL_H
|
||||
#define _DEBUGGER_DLL_H
|
||||
|
||||
#include "_global.h"
|
||||
|
||||
namespace GleeBug
|
||||
{
|
||||
/**
|
||||
\brief DLL information structure.
|
||||
*/
|
||||
struct DllInfo
|
||||
{
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
#endif //_DEBUGGER_DLL_H
|
||||
|
|
@ -139,6 +139,7 @@
|
|||
<ClCompile Include="_global.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="Debugger.Dll.h" />
|
||||
<ClInclude Include="Debugger.Process.h" />
|
||||
<ClInclude Include="Debugger.h" />
|
||||
<ClInclude Include="Debugger.Thread.h" />
|
||||
|
|
|
|||
|
|
@ -38,5 +38,8 @@
|
|||
<ClInclude Include="Debugger.Thread.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="Debugger.Dll.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
Reference in New Issue