-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update (intial upload) Project uploaded
This is pretty much it. fully decompiled files of the black magic dll that is used in about 90% of all nearly all cheat apps for World of Warcraft Emulation.
- Loading branch information
1 parent
05185bc
commit 5a37e70
Showing
36 changed files
with
2,627 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+55.4 KB
...gic decompiled/.vs/BlackMagic/FileContentIndex/0c297cf4-aea2-4919-a748-e7c3ecae4848.vsidx
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>BlackMagic</AssemblyName> | ||
<GenerateAssemblyInfo>False</GenerateAssemblyInfo> | ||
<TargetFramework>net20</TargetFramework> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<LangVersion>11.0</LangVersion> | ||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> | ||
</PropertyGroup> | ||
<PropertyGroup /> | ||
<ItemGroup /> | ||
<ItemGroup> | ||
<Reference Include="fasmdll_managed"> | ||
<HintPath>..\fasmdll_managed.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
namespace Magic; | ||
|
||
public static class AccessRights | ||
{ | ||
public const uint STANDARD_RIGHTS_REQUIRED = 983040u; | ||
|
||
public const uint SYNCHRONIZE = 1048576u; | ||
|
||
public const uint PROCESS_TERMINATE = 1u; | ||
|
||
public const uint PROCESS_CREATE_THREAD = 2u; | ||
|
||
public const uint PROCESS_VM_OPERATION = 8u; | ||
|
||
public const uint PROCESS_VM_READ = 16u; | ||
|
||
public const uint PROCESS_VM_WRITE = 32u; | ||
|
||
public const uint PROCESS_DUP_HANDLE = 64u; | ||
|
||
public const uint PROCESS_CREATE_PROCESS = 128u; | ||
|
||
public const uint PROCESS_SET_QUOTA = 256u; | ||
|
||
public const uint PROCESS_SET_INFORMATION = 512u; | ||
|
||
public const uint PROCESS_QUERY_INFORMATION = 1024u; | ||
|
||
public const uint PROCESS_SUSPEND_RESUME = 2048u; | ||
|
||
public const uint PROCESS_QUERY_LIMITED_INFORMATION = 4096u; | ||
|
||
public const uint PROCESS_ALL_ACCESS = 2035711u; | ||
|
||
public const uint THREAD_TERMINATE = 1u; | ||
|
||
public const uint THREAD_SUSPEND_RESUME = 2u; | ||
|
||
public const uint THREAD_GET_CONTEXT = 8u; | ||
|
||
public const uint THREAD_SET_CONTEXT = 16u; | ||
|
||
public const uint THREAD_QUERY_INFORMATION = 64u; | ||
|
||
public const uint THREAD_SET_INFORMATION = 32u; | ||
|
||
public const uint THREAD_SET_THREAD_TOKEN = 128u; | ||
|
||
public const uint THREAD_IMPERSONATE = 256u; | ||
|
||
public const uint THREAD_DIRECT_IMPERSONATION = 512u; | ||
|
||
public const uint THREAD_ALL_ACCESS = 2032639u; | ||
} |
Oops, something went wrong.