Skip navigation links
JNA API 4.4.0
com.sun.jna.platform.win32

Interface Psapi

  • All Superinterfaces:
    AltCallingConvention, Library, StdCall, StdCallLibrary


    public interface Psapi
    extends StdCallLibrary
    The process status application programming interface (PSAPI) is a helper library that makes it easier for you to obtain information about processes and device drivers.
    Author:
    Andreas "PAX" Lück, onkelpax-git[at]yahoo.de
    • Field Detail

      • INSTANCE

        static final Psapi INSTANCE
    • Method Detail

      • GetModuleFileNameExA

        int GetModuleFileNameExA(WinNT.HANDLE process,
                                 WinNT.HANDLE module,
                                 byte[] lpFilename,
                                 int nSize)
        Retrieves the fully qualified path for the file containing the specified module.
        Parameters:
        process - A handle to the process that contains the module.
        module - A handle to the module. If this parameter is NULL, GetModuleFileNameEx returns the path of the executable file of the process specified in hProcess.
        lpFilename - A pointer to a buffer that receives the fully qualified path to the module. If the size of the file name is larger than the value of the nSize parameter, the function succeeds but the file name is truncated and null-terminated.
        nSize - The size of the lpFilename buffer, in characters.
        Returns:
        If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. To get extended error information, call Kernel32Util.getLastErrorMessage().
      • GetModuleFileNameExW

        int GetModuleFileNameExW(WinNT.HANDLE process,
                                 WinNT.HANDLE module,
                                 char[] lpFilename,
                                 int nSize)
        Retrieves the fully qualified path for the file containing the specified module.
        Parameters:
        process - A handle to the process that contains the module.
        module - A handle to the module. If this parameter is NULL, GetModuleFileNameEx returns the path of the executable file of the process specified in hProcess.
        lpFilename - A pointer to a buffer that receives the fully qualified path to the module. If the size of the file name is larger than the value of the nSize parameter, the function succeeds but the file name is truncated and null-terminated.
        nSize - The size of the lpFilename buffer, in characters.
        Returns:
        If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. To get extended error information, call Kernel32Util.getLastErrorMessage().
      • GetModuleFileNameEx

        int GetModuleFileNameEx(WinNT.HANDLE process,
                                WinNT.HANDLE module,
                                Pointer lpFilename,
                                int nSize)
        Retrieves the fully qualified path for the file containing the specified module.
        Parameters:
        process - A handle to the process that contains the module.
        module - A handle to the module. If this parameter is NULL, GetModuleFileNameEx returns the path of the executable file of the process specified in hProcess.
        lpFilename - A pointer to a buffer that receives the fully qualified path to the module. If the size of the file name is larger than the value of the nSize parameter, the function succeeds but the file name is truncated and null-terminated.
        nSize - The size of the lpFilename buffer, in characters.
        Returns:
        If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. To get extended error information, call Kernel32Util.getLastErrorMessage().
      • EnumProcessModules

        boolean EnumProcessModules(WinNT.HANDLE hProcess,
                                   WinDef.HMODULE[] lphModule,
                                   int cb,
                                   IntByReference lpcbNeeded)
        The EnumProcessModules function is primarily designed for use by debuggers and similar applications that must extract module information from another process.
        If the module list in the target process is corrupted or not yet initialized, or if the module list changes during the function call as a result of DLLs being loaded or unloaded, EnumProcessModules may fail or return incorrect information.
        It is a good idea to specify a large array of HMODULE values, because it is hard to predict how many modules there will be in the process at the time you call EnumProcessModules.
        To determine if the lphModule array is too small to hold all module handles for the process, compare the value returned in lpcbNeeded with the value specified in cb.
        If lpcbNeeded is greater than cb, increase the size of the array and call EnumProcessModules again. To determine how many modules were enumerated by the call to EnumProcessModules, divide the resulting value in the lpcbNeeded parameter by sizeof(HMODULE).
        The EnumProcessModules function does not retrieve handles for modules that were loaded with the LOAD_LIBRARY_AS_DATAFILE or similar flags. For more information, see LoadLibraryEx.
        Do not call CloseHandle on any of the handles returned by this function. The information comes from a snapshot, so there are no resources to be freed.
        If this function is called from a 32-bit application running on WOW64, it can only enumerate the modules of a 32-bit process.
        If the process is a 64-bit process, this function fails and the last error code is ERROR_PARTIAL_COPY (299).
        To take a snapshot of specified processes and the heaps, modules, and threads used by these processes, use the CreateToolhelp32Snapshot function.
        Starting with Windows 7 and Windows Server 2008 R2, Psapi.h establishes version numbers for the PSAPI functions.
        The PSAPI version number affects the name used to call the function and the library that a program must load.
        If PSAPI_VERSION is 2 or greater, this function is defined as K32EnumProcessModules in Psapi.h and exported in Kernel32.lib and Kernel32.dll.
        If PSAPI_VERSION is 1, this function is defined as EnumProcessModules in Psapi.h and exported in Psapi.lib and Psapi.dll as a wrapper that calls K32EnumProcessModules.
        Programs that must run on earlier versions of Windows as well as Windows 7 and later versions should always call this function as EnumProcessModules.
        To ensure correct resolution of symbols, add Psapi.lib to the TARGETLIBS macro and compile the program with -DPSAPI_VERSION=1.
        To use run-time dynamic linking, load Psapi.dll.
        Parameters:
        hProcess - A handle to the process.
        lphModule - An array that receives the list of module handles.
        cb - The size of the lphModule array, in bytes.
        lpcbNeeded - The number of bytes required to store all module handles in the lphModule array.
        Returns:
        If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
        See Also:
        MSDN/a>
      • GetModuleInformation

        boolean GetModuleInformation(WinNT.HANDLE hProcess,
                                     WinDef.HMODULE hModule,
                                     Psapi.MODULEINFO lpmodinfo,
                                     int cb)
        To get information for the calling process, pass the handle returned by GetCurrentProcess.
        The GetModuleInformation function does not retrieve information for modules that were loaded with the LOAD_LIBRARY_AS_DATAFILE flag.
        For more information, see LoadLibraryEx.
        Starting with Windows 7 and Windows Server 2008 R2, Psapi.h establishes version numbers for the PSAPI functions.
        The PSAPI version number affects the name used to call the function and the library that a program must load.
        If PSAPI_VERSION is 2 or greater, this function is defined as K32GetModuleInformation in Psapi.h and exported in Kernel32.lib and Kernel32.dll.
        If PSAPI_VERSION is 1, this function is defined as K32GetModuleInformation in Psapi.h and exported in Psapi.lib and Psapi.dll as a wrapper that calls K32GetModuleInformation.
        Programs that must run on earlier versions of Windows as well as Windows 7 and later versions should always call this function as K32GetModuleInformation.
        To ensure correct resolution of symbols, add Psapi.lib to the TARGETLIBS macro and compile the program with -DPSAPI_VERSION=1.
        To use run-time dynamic linking, load Psapi.dll.
        Parameters:
        hProcess - A handle to the process that contains the module. The handle must have the PROCESS_QUERY_INFORMATION and PROCESS_VM_READ access rights. For more information, see Process Security and Access Rights.
        hModule - A handle to the module.
        lpmodinfo - A pointer to the MODULEINFO structure that receives information about the module.
        cb - The size of the MODULEINFO structure, in bytes.
        Returns:
        If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
        See Also:
        MSDN
      • GetProcessImageFileName

        int GetProcessImageFileName(WinNT.HANDLE hProcess,
                                    char[] lpImageFileName,
                                    int nSize)
        Parameters:
        hProcess - A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right. For more information, see Process Security and Access Rights.
        Windows Server 2003 and Windows XP: The handle must have the PROCESS_QUERY_INFORMATION access right.
        lpImageFileName - A pointer to a buffer that receives the full path to the executable file.
        nSize - The size of the lpImageFileName buffer, in characters.
        Returns:
        If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. To get extended error information, call GetLastError.
        See Also:
        MSDN
JNA API 4.4.0

Copyright © 2007-2016 Timothy Wall. All Rights Reserved.