mirror of
https://github.com/hakril/PythonForWindows
synced 2026-06-08 14:31:45 +00:00
284 lines
16 KiB
HTML
284 lines
16 KiB
HTML
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
<title>2.12. System Module – Loaded kernel modules — PythonForWindows 0.5 documentation</title>
|
||
<link rel="stylesheet" href="_static/classic.css" type="text/css" />
|
||
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
||
<link rel="stylesheet" href="_static/css/mbasic.css" type="text/css" />
|
||
<script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
|
||
<script type="text/javascript" src="_static/jquery.js"></script>
|
||
<script type="text/javascript" src="_static/underscore.js"></script>
|
||
<script type="text/javascript" src="_static/doctools.js"></script>
|
||
<link rel="index" title="Index" href="genindex.html" />
|
||
<link rel="search" title="Search" href="search.html" />
|
||
<link rel="next" title="2.13. Object Manager – Kernel objects" href="object_manager.html" />
|
||
<link rel="prev" title="2.11. Handle – Processes handles" href="handle.html" />
|
||
</head><body>
|
||
<div class="related" role="navigation" aria-label="related navigation">
|
||
<h3>Navigation</h3>
|
||
<ul>
|
||
<li class="right" style="margin-right: 10px">
|
||
<a href="genindex.html" title="General Index"
|
||
accesskey="I">index</a></li>
|
||
<li class="right" >
|
||
<a href="py-modindex.html" title="Python Module Index"
|
||
>modules</a> |</li>
|
||
<li class="right" >
|
||
<a href="object_manager.html" title="2.13. Object Manager – Kernel objects"
|
||
accesskey="N">next</a> |</li>
|
||
<li class="right" >
|
||
<a href="handle.html" title="2.11. Handle – Processes handles"
|
||
accesskey="P">previous</a> |</li>
|
||
<li class="nav-item nav-item-0"><a href="index.html">PythonForWindows 0.5 documentation</a> »</li>
|
||
<li class="nav-item nav-item-1"><a href="winobject.html" accesskey="U">2. The <code class="docutils literal notranslate"><span class="pre">windows</span></code> objects</a> »</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="document">
|
||
<div class="documentwrapper">
|
||
<div class="bodywrapper">
|
||
<div class="body" role="main">
|
||
|
||
<div class="section" id="module-windows.winobject.system_module">
|
||
<span id="system-module-loaded-kernel-modules"></span><h1>2.12. System Module – Loaded kernel modules<a class="headerlink" href="#module-windows.winobject.system_module" title="Permalink to this headline">¶</a></h1>
|
||
<p>The list of system modules is accessible via <a class="reference internal" href="windows.html#windows.winobject.system.System.modules" title="windows.winobject.system.System.modules"><code class="xref py py-attr docutils literal notranslate"><span class="pre">windows.system.modules</span></code></a></p>
|
||
<div class="admonition note">
|
||
<p class="first admonition-title">Note</p>
|
||
<p class="last">See sample <a class="reference internal" href="sample.html#sample-system"><span class="std std-ref">windows.system</span></a></p>
|
||
</div>
|
||
<div class="section" id="systemmodule">
|
||
<h2>2.12.1. SystemModule<a class="headerlink" href="#systemmodule" title="Permalink to this headline">¶</a></h2>
|
||
<dl class="class">
|
||
<dt id="windows.winobject.system_module.SystemModule">
|
||
<em class="property">class </em><code class="descclassname">windows.winobject.system_module.</code><code class="descname">SystemModule</code><a class="reference internal" href="_modules/windows/winobject/system_module.html#SystemModule"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#windows.winobject.system_module.SystemModule" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Bases: <a class="reference internal" href="#windows.winobject.system_module.BaseSystemModule" title="windows.winobject.system_module.BaseSystemModule"><code class="xref py py-class docutils literal notranslate"><span class="pre">windows.winobject.system_module.BaseSystemModule</span></code></a>, <a class="reference internal" href="winstructs_generated.html#windows.generated_def.winstructs._SYSTEM_MODULE32" title="windows.generated_def.winstructs._SYSTEM_MODULE32"><code class="xref py py-class docutils literal notranslate"><span class="pre">windows.generated_def.winstructs._SYSTEM_MODULE32</span></code></a></p>
|
||
<p>A system module.</p>
|
||
<div class="admonition note">
|
||
<p class="first admonition-title">Note</p>
|
||
<p class="last">inherit from SYSTEM_MODULE[32/64] based on the current process bitness</p>
|
||
</div>
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Base">
|
||
<code class="descname">Base</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Base" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Flags">
|
||
<code class="descname">Flags</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Flags" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.ImageName">
|
||
<code class="descname">ImageName</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.ImageName" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Index">
|
||
<code class="descname">Index</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Index" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.LoadCount">
|
||
<code class="descname">LoadCount</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.LoadCount" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.ModuleNameOffset">
|
||
<code class="descname">ModuleNameOffset</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.ModuleNameOffset" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Reserved">
|
||
<code class="descname">Reserved</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Reserved" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Size">
|
||
<code class="descname">Size</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Size" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.Unknown">
|
||
<code class="descname">Unknown</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.Unknown" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModule.name">
|
||
<code class="descname">name</code><a class="headerlink" href="#windows.winobject.system_module.SystemModule.name" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>The name of the system module: alias for <code class="docutils literal notranslate"><span class="pre">ImageName</span></code></p>
|
||
</dd></dl>
|
||
|
||
</dd></dl>
|
||
|
||
</div>
|
||
<div class="section" id="systemmodulewow64">
|
||
<h2>2.12.2. SystemModuleWow64<a class="headerlink" href="#systemmodulewow64" title="Permalink to this headline">¶</a></h2>
|
||
<dl class="class">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64">
|
||
<em class="property">class </em><code class="descclassname">windows.winobject.system_module.</code><code class="descname">SystemModuleWow64</code><a class="reference internal" href="_modules/windows/winobject/system_module.html#SystemModuleWow64"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Bases: <a class="reference internal" href="#windows.winobject.system_module.BaseSystemModule" title="windows.winobject.system_module.BaseSystemModule"><code class="xref py py-class docutils literal notranslate"><span class="pre">windows.winobject.system_module.BaseSystemModule</span></code></a>, <a class="reference internal" href="winstructs_generated.html#windows.generated_def.winstructs._SYSTEM_MODULE64" title="windows.generated_def.winstructs._SYSTEM_MODULE64"><code class="xref py py-class docutils literal notranslate"><span class="pre">windows.generated_def.winstructs._SYSTEM_MODULE64</span></code></a></p>
|
||
<p>An explicite 64b system module for SysWow64 processes</p>
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Base">
|
||
<code class="descname">Base</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Base" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Flags">
|
||
<code class="descname">Flags</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Flags" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.ImageName">
|
||
<code class="descname">ImageName</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.ImageName" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Index">
|
||
<code class="descname">Index</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Index" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.LoadCount">
|
||
<code class="descname">LoadCount</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.LoadCount" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.ModuleNameOffset">
|
||
<code class="descname">ModuleNameOffset</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.ModuleNameOffset" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Reserved">
|
||
<code class="descname">Reserved</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Reserved" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Size">
|
||
<code class="descname">Size</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Size" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.Unknown">
|
||
<code class="descname">Unknown</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.Unknown" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>Structure/Union member</p>
|
||
</dd></dl>
|
||
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.SystemModuleWow64.name">
|
||
<code class="descname">name</code><a class="headerlink" href="#windows.winobject.system_module.SystemModuleWow64.name" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>The name of the system module: alias for <code class="docutils literal notranslate"><span class="pre">ImageName</span></code></p>
|
||
</dd></dl>
|
||
|
||
</dd></dl>
|
||
|
||
</div>
|
||
<div class="section" id="basesystemmodule">
|
||
<h2>2.12.3. BaseSystemModule<a class="headerlink" href="#basesystemmodule" title="Permalink to this headline">¶</a></h2>
|
||
<dl class="class">
|
||
<dt id="windows.winobject.system_module.BaseSystemModule">
|
||
<em class="property">class </em><code class="descclassname">windows.winobject.system_module.</code><code class="descname">BaseSystemModule</code><a class="reference internal" href="_modules/windows/winobject/system_module.html#BaseSystemModule"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#windows.winobject.system_module.BaseSystemModule" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>[ABSTRACT] A common base class for all system modules</p>
|
||
<dl class="attribute">
|
||
<dt id="windows.winobject.system_module.BaseSystemModule.name">
|
||
<code class="descname">name</code><a class="headerlink" href="#windows.winobject.system_module.BaseSystemModule.name" title="Permalink to this definition">¶</a></dt>
|
||
<dd><p>The name of the system module: alias for <code class="docutils literal notranslate"><span class="pre">ImageName</span></code></p>
|
||
</dd></dl>
|
||
|
||
</dd></dl>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
||
<div class="sphinxsidebarwrapper">
|
||
<h3><a href="index.html">Table Of Contents</a></h3>
|
||
<ul>
|
||
<li><a class="reference internal" href="#">2.12. System Module – Loaded kernel modules</a><ul>
|
||
<li><a class="reference internal" href="#systemmodule">2.12.1. SystemModule</a></li>
|
||
<li><a class="reference internal" href="#systemmodulewow64">2.12.2. SystemModuleWow64</a></li>
|
||
<li><a class="reference internal" href="#basesystemmodule">2.12.3. BaseSystemModule</a></li>
|
||
</ul>
|
||
</li>
|
||
</ul>
|
||
|
||
<h4>Previous topic</h4>
|
||
<p class="topless"><a href="handle.html"
|
||
title="previous chapter">2.11. Handle – Processes handles</a></p>
|
||
<h4>Next topic</h4>
|
||
<p class="topless"><a href="object_manager.html"
|
||
title="next chapter">2.13. Object Manager – Kernel objects</a></p>
|
||
<div role="note" aria-label="source link">
|
||
<h3>This Page</h3>
|
||
<ul class="this-page-menu">
|
||
<li><a href="_sources/system_module.rst.txt"
|
||
rel="nofollow">Show Source</a></li>
|
||
</ul>
|
||
</div>
|
||
<div id="searchbox" style="display: none" role="search">
|
||
<h3>Quick search</h3>
|
||
<div class="searchformwrapper">
|
||
<form class="search" action="search.html" method="get">
|
||
<input type="text" name="q" />
|
||
<input type="submit" value="Go" />
|
||
<input type="hidden" name="check_keywords" value="yes" />
|
||
<input type="hidden" name="area" value="default" />
|
||
</form>
|
||
</div>
|
||
</div>
|
||
<script type="text/javascript">$('#searchbox').show(0);</script>
|
||
</div>
|
||
</div>
|
||
<div class="clearer"></div>
|
||
</div>
|
||
<div class="related" role="navigation" aria-label="related navigation">
|
||
<h3>Navigation</h3>
|
||
<ul>
|
||
<li class="right" style="margin-right: 10px">
|
||
<a href="genindex.html" title="General Index"
|
||
>index</a></li>
|
||
<li class="right" >
|
||
<a href="py-modindex.html" title="Python Module Index"
|
||
>modules</a> |</li>
|
||
<li class="right" >
|
||
<a href="object_manager.html" title="2.13. Object Manager – Kernel objects"
|
||
>next</a> |</li>
|
||
<li class="right" >
|
||
<a href="handle.html" title="2.11. Handle – Processes handles"
|
||
>previous</a> |</li>
|
||
<li class="nav-item nav-item-0"><a href="index.html">PythonForWindows 0.5 documentation</a> »</li>
|
||
<li class="nav-item nav-item-1"><a href="winobject.html" >2. The <code class="docutils literal notranslate"><span class="pre">windows</span></code> objects</a> »</li>
|
||
</ul>
|
||
</div>
|
||
<div class="footer" role="contentinfo">
|
||
© Copyright 2015, Clement Rouault.
|
||
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.7.5.
|
||
</div>
|
||
</body>
|
||
</html> |