Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

MODULEENTRY32 (kernel32)
 
.
Summary

C# Signature:

public struct MODULEENTRY32
    {//http://pastebin.com/BzD1jdmH
        private const int MAX_PATH = 255;
       internal uint dwSize;    //размер структуры в байтах
       internal uint th32ModuleID;//ID модуля
       internal uint th32ProcessID;//ID процесса модуля
       internal uint GlblcntUsage;//общее для системы количество обращений к модулю
       internal uint ProccntUsage;//количество обращений к модулю, сделанных из текущего процесса
       internal IntPtr modBaseAddr;//адрес модуля в адресном пространстве процесса
       internal uint modBaseSize;//размер модуля
       internal IntPtr hModule;//дескриптор модуля в контексте процесса
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH + 1)]
       internal string szModule;//имя модуля
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH+5)]
       internal string szExePath;//полный путь к файлу
    }

VB Signature:

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

http://pastebin.com/BzD1jdmH

Sample Code:

Please add some!

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions