mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
docs: regenerate, include docfx config
This commit is contained in:
parent
6e486d0cea
commit
c59f53db2f
384 changed files with 248388 additions and 1052 deletions
|
|
@ -10,13 +10,13 @@
|
|||
<meta name="viewport" content="width=device-width">
|
||||
<meta name="title" content="Class SigScanner
|
||||
">
|
||||
<meta name="generator" content="docfx 2.43.1.0">
|
||||
<meta name="generator" content="docfx 2.48.1.0">
|
||||
|
||||
<link rel="shortcut icon" href="../favicon.ico">
|
||||
<link rel="stylesheet" href="../styles/docfx.vendor.css">
|
||||
<link rel="stylesheet" href="../styles/docfx.css">
|
||||
<link rel="stylesheet" href="../styles/main.css">
|
||||
<meta property="docfx:navrel" content="../toc.html">
|
||||
<meta property="docfx:navrel" content="">
|
||||
<meta property="docfx:tocrel" content="toc.html">
|
||||
|
||||
|
||||
|
|
@ -73,13 +73,18 @@
|
|||
|
||||
<h1 id="Dalamud_Game_SigScanner" data-uid="Dalamud.Game.SigScanner" class="text-break">Class SigScanner
|
||||
</h1>
|
||||
<div class="markdown level0 summary"></div>
|
||||
<div class="markdown level0 summary"><p>A SigScanner facilitates searching for memory signatures in a given ProcessModule.</p>
|
||||
</div>
|
||||
<div class="markdown level0 conceptual"></div>
|
||||
<div class="inheritance">
|
||||
<h5>Inheritance</h5>
|
||||
<div class="level0"><span class="xref">System.Object</span></div>
|
||||
<div class="level1"><span class="xref">SigScanner</span></div>
|
||||
</div>
|
||||
<div classs="implements">
|
||||
<h5>Implements</h5>
|
||||
<div><span class="xref">System.IDisposable</span></div>
|
||||
</div>
|
||||
<div class="inheritedMembers">
|
||||
<h5>Inherited Members</h5>
|
||||
<div>
|
||||
|
|
@ -108,19 +113,25 @@
|
|||
<h6><strong>Assembly</strong>: Dalamud.dll</h6>
|
||||
<h5 id="Dalamud_Game_SigScanner_syntax">Syntax</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public sealed class SigScanner</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public sealed class SigScanner : IDisposable</code></pre>
|
||||
</div>
|
||||
<h3 id="constructors">Constructors
|
||||
</h3>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner__ctor_System_Diagnostics_ProcessModule_System_Boolean_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.%23ctor(System.Diagnostics.ProcessModule%2CSystem.Boolean)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L19">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner__ctor_" data-uid="Dalamud.Game.SigScanner.#ctor*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner__ctor_System_Diagnostics_ProcessModule_" data-uid="Dalamud.Game.SigScanner.#ctor(System.Diagnostics.ProcessModule)">SigScanner(ProcessModule)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<h4 id="Dalamud_Game_SigScanner__ctor_System_Diagnostics_ProcessModule_System_Boolean_" data-uid="Dalamud.Game.SigScanner.#ctor(System.Diagnostics.ProcessModule,System.Boolean)">SigScanner(ProcessModule, Boolean)</h4>
|
||||
<div class="markdown level1 summary"><p>Set up the SigScanner.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public SigScanner(ProcessModule module)</code></pre>
|
||||
<pre><code class="lang-csharp hljs">public SigScanner(ProcessModule module, bool doCopy = false)</code></pre>
|
||||
</div>
|
||||
<h5 class="parameters">Parameters</h5>
|
||||
<table class="table table-bordered table-striped table-condensed">
|
||||
|
|
@ -135,17 +146,30 @@
|
|||
<tr>
|
||||
<td><span class="xref">System.Diagnostics.ProcessModule</span></td>
|
||||
<td><span class="parametername">module</span></td>
|
||||
<td></td>
|
||||
<td><p>The ProcessModule to be used for scanning</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="xref">System.Boolean</span></td>
|
||||
<td><span class="parametername">doCopy</span></td>
|
||||
<td><p>Whether or not to copy the module upon initialization for search operations to use, as to not get disturbed by possible hooks.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h3 id="properties">Properties
|
||||
</h3>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_DataSectionBase.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.DataSectionBase%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L65">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_DataSectionBase_" data-uid="Dalamud.Game.SigScanner.DataSectionBase*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_DataSectionBase" data-uid="Dalamud.Game.SigScanner.DataSectionBase">DataSectionBase</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>The base address of the .data section search area.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -166,11 +190,48 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_DataSectionOffset.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.DataSectionOffset%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L69">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_DataSectionOffset_" data-uid="Dalamud.Game.SigScanner.DataSectionOffset*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_DataSectionOffset" data-uid="Dalamud.Game.SigScanner.DataSectionOffset">DataSectionOffset</h4>
|
||||
<div class="markdown level1 summary"><p>The offset of the .data section from the base of the module.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public long DataSectionOffset { get; }</code></pre>
|
||||
</div>
|
||||
<h5 class="propertyValue">Property Value</h5>
|
||||
<table class="table table-bordered table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.Int64</span></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_DataSectionSize.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.DataSectionSize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L73">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_DataSectionSize_" data-uid="Dalamud.Game.SigScanner.DataSectionSize*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_DataSectionSize" data-uid="Dalamud.Game.SigScanner.DataSectionSize">DataSectionSize</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>The size of the .data section.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -191,11 +252,17 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_Is32BitProcess.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.Is32BitProcess%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L42">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_Is32BitProcess_" data-uid="Dalamud.Game.SigScanner.Is32BitProcess*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_Is32BitProcess" data-uid="Dalamud.Game.SigScanner.Is32BitProcess">Is32BitProcess</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>If the ProcessModule is 32-bit.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -216,11 +283,48 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_IsCopy.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.IsCopy%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L37">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_IsCopy_" data-uid="Dalamud.Game.SigScanner.IsCopy*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_IsCopy" data-uid="Dalamud.Game.SigScanner.IsCopy">IsCopy</h4>
|
||||
<div class="markdown level1 summary"><p>If the search on this module is performed on a copy.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public bool IsCopy { get; }</code></pre>
|
||||
</div>
|
||||
<h5 class="propertyValue">Property Value</h5>
|
||||
<table class="table table-bordered table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.Boolean</span></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_Module.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.Module%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L78">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_Module_" data-uid="Dalamud.Game.SigScanner.Module*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_Module" data-uid="Dalamud.Game.SigScanner.Module">Module</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>The ProcessModule on which the search is performed.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -241,11 +345,48 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_SearchBase.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.SearchBase%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L47">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_SearchBase_" data-uid="Dalamud.Game.SigScanner.SearchBase*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_SearchBase" data-uid="Dalamud.Game.SigScanner.SearchBase">SearchBase</h4>
|
||||
<div class="markdown level1 summary"><p>The base address of the search area. When copied, this will be the address of the copy.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public IntPtr SearchBase { get; }</code></pre>
|
||||
</div>
|
||||
<h5 class="propertyValue">Property Value</h5>
|
||||
<table class="table table-bordered table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.IntPtr</span></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_TextSectionBase.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.TextSectionBase%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L52">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_TextSectionBase_" data-uid="Dalamud.Game.SigScanner.TextSectionBase*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_TextSectionBase" data-uid="Dalamud.Game.SigScanner.TextSectionBase">TextSectionBase</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>The base address of the .text section search area.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -266,11 +407,48 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_TextSectionOffset.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.TextSectionOffset%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L56">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_TextSectionOffset_" data-uid="Dalamud.Game.SigScanner.TextSectionOffset*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_TextSectionOffset" data-uid="Dalamud.Game.SigScanner.TextSectionOffset">TextSectionOffset</h4>
|
||||
<div class="markdown level1 summary"><p>The offset of the .text section from the base of the module.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public long TextSectionOffset { get; }</code></pre>
|
||||
</div>
|
||||
<h5 class="propertyValue">Property Value</h5>
|
||||
<table class="table table-bordered table-striped table-condensed">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Type</th>
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.Int64</span></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_TextSectionSize.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.TextSectionSize%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L60">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_TextSectionSize_" data-uid="Dalamud.Game.SigScanner.TextSectionSize*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_TextSectionSize" data-uid="Dalamud.Game.SigScanner.TextSectionSize">TextSectionSize</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>The size of the text section.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -293,8 +471,29 @@
|
|||
</table>
|
||||
<h3 id="methods">Methods
|
||||
</h3>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_Dispose.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.Dispose%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L142">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_Dispose_" data-uid="Dalamud.Game.SigScanner.Dispose*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_Dispose" data-uid="Dalamud.Game.SigScanner.Dispose">Dispose()</h4>
|
||||
<div class="markdown level1 summary"><p>Free the memory of the copied module search area on object disposal, if applicable.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public void Dispose()</code></pre>
|
||||
</div>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_ResolveRelativeAddress_System_IntPtr_System_Int32_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.ResolveRelativeAddress(System.IntPtr%2CSystem.Int32)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L207">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_ResolveRelativeAddress_" data-uid="Dalamud.Game.SigScanner.ResolveRelativeAddress*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_ResolveRelativeAddress_System_IntPtr_System_Int32_" data-uid="Dalamud.Game.SigScanner.ResolveRelativeAddress(System.IntPtr,System.Int32)">ResolveRelativeAddress(IntPtr, Int32)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
|
|
@ -340,8 +539,13 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_Scan_System_IntPtr_System_Int32_System_String_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.Scan(System.IntPtr%2CSystem.Int32%2CSystem.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L190">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_Scan_" data-uid="Dalamud.Game.SigScanner.Scan*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_Scan_System_IntPtr_System_Int32_System_String_" data-uid="Dalamud.Game.SigScanner.Scan(System.IntPtr,System.Int32,System.String)">Scan(IntPtr, Int32, String)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
|
|
@ -392,11 +596,17 @@
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_ScanData_System_String_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.ScanData(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L167">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_ScanData_" data-uid="Dalamud.Game.SigScanner.ScanData*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_ScanData_System_String_" data-uid="Dalamud.Game.SigScanner.ScanData(System.String)">ScanData(String)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>Scan for a byte signature in the .data section.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -415,7 +625,8 @@
|
|||
<tr>
|
||||
<td><span class="xref">System.String</span></td>
|
||||
<td><span class="parametername">signature</span></td>
|
||||
<td></td>
|
||||
<td><p>The signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
@ -430,15 +641,22 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.IntPtr</span></td>
|
||||
<td></td>
|
||||
<td><p>The real offset of the found signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_ScanModule_System_String_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.ScanModule(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L181">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_ScanModule_" data-uid="Dalamud.Game.SigScanner.ScanModule*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_ScanModule_System_String_" data-uid="Dalamud.Game.SigScanner.ScanModule(System.String)">ScanModule(String)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>Scan for a byte signature in the whole module search area.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -457,7 +675,8 @@
|
|||
<tr>
|
||||
<td><span class="xref">System.String</span></td>
|
||||
<td><span class="parametername">signature</span></td>
|
||||
<td></td>
|
||||
<td><p>The signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
@ -472,15 +691,22 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.IntPtr</span></td>
|
||||
<td></td>
|
||||
<td><p>The real offset of the found signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
<span class="small pull-right mobile-hide">
|
||||
<span class="divider">|</span>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner_ScanText_System_String_.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner.ScanText(System.String)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
|
||||
</span>
|
||||
<span class="small pull-right mobile-hide">
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L151">View Source</a>
|
||||
</span>
|
||||
<a id="Dalamud_Game_SigScanner_ScanText_" data-uid="Dalamud.Game.SigScanner.ScanText*"></a>
|
||||
<h4 id="Dalamud_Game_SigScanner_ScanText_System_String_" data-uid="Dalamud.Game.SigScanner.ScanText(System.String)">ScanText(String)</h4>
|
||||
<div class="markdown level1 summary"></div>
|
||||
<div class="markdown level1 summary"><p>Scan for a byte signature in the .text section.</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
<h5 class="decalaration">Declaration</h5>
|
||||
<div class="codewrapper">
|
||||
|
|
@ -499,7 +725,8 @@
|
|||
<tr>
|
||||
<td><span class="xref">System.String</span></td>
|
||||
<td><span class="parametername">signature</span></td>
|
||||
<td></td>
|
||||
<td><p>The signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
@ -514,10 +741,15 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td><span class="xref">System.IntPtr</span></td>
|
||||
<td></td>
|
||||
<td><p>The real offset of the found signature.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h3 id="implements">Implements</h3>
|
||||
<div>
|
||||
<span class="xref">System.IDisposable</span>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
|
|
@ -525,6 +757,12 @@
|
|||
<div class="sideaffix">
|
||||
<div class="contribution">
|
||||
<ul class="nav">
|
||||
<li>
|
||||
<a href="https://github.com/goaaats/Dalamud/new/master/apiSpec/new?filename=Dalamud_Game_SigScanner.md&value=---%0Auid%3A%20Dalamud.Game.SigScanner%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/goaaats/Dalamud/blob/master/Dalamud/Game/SigScanner.cs/#L13" class="contribution-link">View Source</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue